/* UTILITAIRES DE CENTRAGE */
.text-center {
    text-align: center !important;
}

.margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* BANNIÈRE DE PAGE SECONDAIRE */
.page-banner {
    background: radial-gradient(circle at top, rgba(0, 242, 254, 0.15) 0%, rgba(244, 248, 253, 0) 70%);
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

.page-banner h1 {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* SECTION ABOUT (HISTOIRE + IMAGE) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    background: rgba(0, 242, 254, 0.15);
    color: #00849e;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* CARTES NOS VALEURS */
.value-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.15);
    border-color: var(--aqua-primary);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* SECTION STATISTIQUES ET CHIFFRES CLÉS */
.stats-section {
    background: var(--bg-dark);
    color: #ffffff;
    border-radius: var(--radius);
    margin: 40px auto;
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--aqua-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
}

/* CALL TO ACTION (CTA) TOTALEMENT CENTRÉ */
.cta-box {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .stats-section {
        margin: 20px;
    }
}