/* =========================================================
   PAGE QUI SOMMES-NOUS
========================================================= */

.about-page-pro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 80px;
}

.about-hero-pro {
    text-align: center;
    margin-bottom: 55px;
}

.about-hero-bg {
    min-height: 360px;
    background:
            linear-gradient(rgba(8, 18, 55, 0.58), rgba(8, 18, 55, 0.58)),
            url("../image/Quisommesnous.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 55px;
    overflow: hidden;
}

.about-hero-overlay {
    max-width: 950px;
    padding: 40px 24px;
    color: white;
}

.about-kicker {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f7c400;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-hero-bg .about-kicker {
    color: #f7c400;
}

.about-hero-pro h1,
.about-hero-bg h1 {
    font-size: 52px;
    margin-bottom: 18px;
    font-weight: 800;
    color: #f7c400;
}

.about-lead {
    max-width: 900px;
    margin: 0 auto;
    font-size: 21px;
    color: #666;
    line-height: 1.8;
}

.about-hero-bg .about-lead {
    max-width: 850px;
    margin: 0 auto;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
}

/* =========================
   PRÉSENTATION ENTREPRISE
========================= */

.about-company-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 55px;
}

.about-company-text h2 {
    font-size: 34px;
    color: #1f1f1f;
    margin-bottom: 18px;
}

.about-company-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-company-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-company-visual img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================
   ENGAGEMENTS
========================= */

.about-pillars-section {
    margin-bottom: 55px;
}

.about-pillars-section h2,
.about-activities-section h2,
.about-contact-section-pro h2 {
    text-align: center;
    font-size: 38px;
    color: #1f1f1f;
    margin-bottom: 30px;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-pillar-card {
    background: white;
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-pillar-card i {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #f7c400;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
}

.about-pillar-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f1f1f;
}

.about-pillar-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   ACTIVITÉS
========================= */

.about-activities-section {
    margin-bottom: 55px;
}

.about-activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-activity-card {
    background: white;
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-activity-card i {
    font-size: 34px;
    color: #1f2c3a;
    margin-bottom: 16px;
}

.about-activity-card h3 {
    font-size: 21px;
    color: #1f1f1f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-activity-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   CONTACT
========================= */

.about-contact-section-pro {
    background: white;
    border-radius: 24px;
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-contact-section-pro p {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.about-contact-buttons-pro {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.about-btn-dark-pro {
    background: #1f1f1f;
    color: white;
}

.about-btn-dark-pro:hover {
    background: #333;
}

/* =========================
   RESPONSIVE QUI SOMMES-NOUS
========================= */

@media (max-width: 1100px) {
    .about-company-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .about-pillars-grid,
    .about-activities-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-pro h1,
    .about-hero-bg h1 {
        font-size: 38px;
    }

    .about-lead,
    .about-company-text p,
    .about-contact-section-pro p {
        font-size: 16px;
    }

    .about-company-text h2,
    .about-pillars-section h2,
    .about-activities-section h2,
    .about-contact-section-pro h2 {
        font-size: 28px;
    }

    .about-company-section {
        padding: 28px 22px;
    }
}