:root {
    --accent: #cc8a00;
    /* couleur orangée de bordure */
    --title-black: #0b0b0b;
    --muted: #222;
    --max-width: 1200px;
    --font: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--muted);
    background: #fff;
}

/* TITRE PRINCIPAL MOT DU DG */
.section-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--title-black);
}

.entreprise {
    font-weight: 800;
    font-size: 1.7rem;
    color: #030663;

}

/* Paragraphe dans MOT DU DG */
.lead-paragraph {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

/* Cadre photo DG */
.dg-photo-frame {
    border: 10px solid var(--accent);
    display: inline-block;
    padding: 4px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dg-photo {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SECTION NOTRE VISION specific */
.vision-section {
    align-items: center;
    gap: 0;
}

/* Gros titre "NOTRE VISION" (visuellement large comme image) */
.vision-title {
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    color: var(--title-black);
    letter-spacing: 1px;
    color: #030663;
}

/* wrap image ronde */
.vision-image-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 6px solid #f6f6f6;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Texte de la vision */
.vision-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
}

/* Sous-titres section mission/objectif */
.section-subtitle {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* listes personnalisées */
.custom-list {
    padding-left: 1.2rem;
    list-style: none;
}

.custom-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.5;
}

.custom-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .vision-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: .75rem;
    }

    .vision-text {
        padding-left: 0;
        text-align: center;
        margin-top: .5rem;
    }

    .vision-section .col-lg-2 {
        margin-bottom: .5rem;
    }
}