/* ===== PAGE ABOUT US ===== */
.about-us {
    background-color: #fff;
    color: #000;
    font-family: Arial, Helvetica, sans-serif; /* même police que la page Président */
    padding: 40px 20px 60px 20px;
    box-sizing: border-box;
}

/* Wrapper texte + image */
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; /* centre verticalement l'image par rapport au texte */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Texte */
.about-text {
    flex: 1 1 60%;
}

.about-title {
    font-weight: 900; /* plus gras comme page Président */
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    font-weight: bold;
}

/* Image */
.about-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center; /* centre horizontalement l'image */
    align-items: center; /* centre verticalement si nécessaire */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .about-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .about-text, .about-image {
        flex: 1 1 100%;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-content {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .about-image {
        margin-top: 20px;
    }

    .about-image img {
        width: 90%;
    }
}
