.page-equipe {
    margin-top: 184px;
    padding-bottom: 20px;
}
@media (max-width: 768px) {
    .page-equipe {
        margin-top: 104px;
    }
}
h1, h2 {
    color: var(--primary-color);
}
.rows-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .rows-2 {
        flex-direction: column;
    }
    .rows-2 .col {
        width: 100% !important;
    }
}
.rows-2 .col:first-child {
    width: 50%;
}
.rows-2 .col:last-child {
    width: 50%;
}
.rows-2 img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.rows-1 {
    margin-top: 90px;
    margin-bottom: 90px;

    padding: 0 20px;
}
.rows-1 p {
    font-size: 1.18em;
    line-height: 1.7;
    color: #2d2d2d;
    text-align: center;
    margin: 0 auto 18px auto;
    max-width: 900px;
    font-weight: 400;
}
@media (max-width: 768px) {
    .rows-1 p {
        font-size: 1em;
        padding: 0 8px;
        max-width: 98vw;
    }
}
.container-btn-equipe-page {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.container-btn-equipe-page button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 36px; /* Légère augmentation pour plus de confort visuel */
    border-radius: 5px;
    margin-top: 15px;
    font-size: 18px;
    border: 2px solid #fff;

    cursor: pointer;
}
.container-btn-equipe-page button:hover,
.container-btn-equipe-page button:focus {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.container-btn-equipe-page button a {
    color: inherit;
    text-decoration: none  ;
}