
:root {
    --apropos-bg: #ffffff;
    --title-color: #0f2a45; /* bleu nuit lisible (titre) */
    --line-color: #d9d1c2; /* lignes fines (taupe/beige doux) */
    --muted: #5a6b85;
    --pill-bg: #e9f1ff; /* conservé si utilisé plus bas */
    --icon-color: #2f6bff; /* conservé si utilisé plus bas */
    --maxw: 1200px;
}

.apropos-section {
    background: var(--apropos-bg);
    padding: 72px 16px;
}

.apropos-container {
    margin: 0 auto;
    max-width: var(--maxw);
}

/* ====== TITRE UNIQUEMENT (nouveau style “lignes latérales”) ====== */

.apropos-header {
    text-align: center;
    margin-bottom: 40px;
}

.apropos-title {
    margin: 0 auto;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

    .apropos-title::before,
    .apropos-title::after {
        content: "";
        flex: 1;
        height: 2px;
        background-color: var(--line-color);
        max-width: 70px;
        min-width: 30px;
        opacity: 0.9;
    }

    /* Couleur du texte */
    .apropos-title,
    .apropos-title > span {
        color: #155e75 !important;
        -webkit-text-fill-color: #155e75 !important;
        background: none !important;
    }

/* Ajustements sur mobile */
@media (max-width: 540px) {
    .apropos-title {
        font-size: 22px;
        gap: 10px;
    }

        .apropos-title::before,
        .apropos-title::after {
            max-width: 40px;
            min-width: 20px;
            opacity: 0.6;
        }
}



/* ====== VOTRE CSS EXISTANT EN DESSOUS (inchangé) ====== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 3vw, 56px);
    align-items: start;
    justify-items: center;
    margin-top:4%;
}

.why-item {
    text-align: center;
}

.icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pill-bg);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
}

.icon {
    width: 30px;
    height: 30px;
    color: var(--icon-color);
}

.why-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--muted);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .apropos-title::before,
    .apropos-title::after {
        width: 56px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .apropos-section {
        padding: 56px 14px;
    }

    .apropos-title {
        padding: 0 22px;
    }

        .apropos-title::before,
        .apropos-title::after {
            width: 40px;
            left: auto;
            right: auto;
        }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .icon-wrap {
        width: 64px;
        height: 64px;
    }

    .icon {
        width: 26px;
        height: 26px;
    }
}
.g-violetBlue-04 { /* Bleu cyan ? Indigo */
    --bg-top: #48cfff;
    --bg-bottom: #2f1e94;
    --btn1-start: #48cfff;
    --btn1-end: #7b5cff;
}
.apropos-section {
    position: relative;
    overflow: hidden;
    background: none; /* désactive le fond blanc */
}

.apropos-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25; /* ajuste la transparence selon le contraste voulu */
}

/* ton contenu reste visible au-dessus de la vidéo */
.apropos-container {
    position: relative;
    z-index: 1;
    /*backdrop-filter: blur(2px);*/ /* optionnel : léger effet de flou pour lisibilité */
}

