    /* =========================================
       0. RESET & VARIABLES
       ========================================= */
    :root {
        --primary: #003399;
        --primary-dark: #002266;
        --accent: #28a745;
        --orange: #ff6600;
        --white: #ffffff;
        --light-bg: #f4f6f9;
        --text-dark: #1a1a1a;
        --text-grey: #555555;
        --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    }

    * { box-sizing: border-box; }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
        background-color: var(--light-bg);
        color: var(--text-dark);
        line-height: 1.6;
    }

    section {
        scroll-margin-top: 160px;
        margin-bottom: 100px;
    }

    h1, h2, h3, h4 { 
        font-family: 'Montserrat', sans-serif; 
        margin: 0; 
    }
    
    img { 
        max-width: 100%; 
        display: block; 
    }
    
    a { 
        text-decoration: none; 
        transition: 0.3s; 
    }

    /* =========================================
       1. AUDIO PLAYER & CONTROLS
       ========================================= */
    #audio-control-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 10001;
        background: var(--white);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        gap: 12px;
        border: 2px solid var(--primary);
        transition: transform 0.3s ease;
    }

    #audio-control-container:hover { 
        transform: scale(1.05); 
    }

    #audio-control-container button {
        border: none;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s;
    }

    #audio-control-container button:hover { 
        transform: scale(1.1); 
    }

    #audio-status {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--primary);
        user-select: none;
        min-width: 60px;
    }

    #volume-slider {
        width: 60px;
        cursor: pointer;
        accent-color: var(--primary);
    }

    /* =========================================
       2. HEADER & NAVIGATION
       ========================================= */
    header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    background: #ffffff; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    /* On met le padding du bas à 0 pour que la ligne des boutons soit au bord */
    padding: 10px 2rem 0 2rem; 
    display: flex; 
    flex-direction: column; 
    height: auto; 
}

    header.scrolled {
        padding: 5px 2rem 0 2rem;
    }

    header.scrolled .logo-img { 
        height: 40px; 
        width: 40px; 
    }

    .header-top {
        display: flex;
        align-items: center;
        width: 100%;
        height: 90px;
        position: relative;
        justify-content: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        position: absolute;
        left: 0;
    }

    .logo-img {
        height: 55px;
        width: 55px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--accent);
    }

    .logo-text {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: -0.5px;
    }

    .logo-text span { 
        color: var(--accent); 
    }

    /* Navigation Menu */
    .nav-menu {
        display: flex;
        gap: 5px;
        list-style: none;
        margin: 0;
        padding: 0;
        height: 100%;
        align-items: center;
    }

    .nav-menu li {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-menu a {
        color: var(--text-dark);
        font-weight: 700;
        font-size: 0.95rem;
        text-transform: uppercase;
        padding: 8px 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 51, 153, 0.3);
    }

    /* Header Bottom - Buttons */
    .header-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 10px 0;
        border-top: 1px solid #f4f6f9;
        width: 100%;
    }

    .cta-btn {
        color: white !important;
        padding: 10px 30px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .btn-bilan { 
        background: var(--accent); 
    }

    .btn-prog { 
        background: var(--orange); 
    }

    /* Header Right - Share & Burger */
    .header-right {
        position: absolute;
        right: 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header-share-top {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .share-btn-top {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .share-btn-top:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .btn-fb { 
        background: #1877F2; 
    }

    .btn-tw { 
        background: #1DA1F2; 
    }

    .btn-wa { 
        background: #25D366; 
    }

    .btn-x { 
        background: #000; 
    }

    /* Mobile Menu */
    .burger-menu {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--primary);
        position: absolute;
        right: 0;
    }

    .mobile-nav {
        position: fixed;
        top: 130px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        gap: 15px;
        border-top: 1px solid #eee;
    }

    .mobile-nav.open { 
        display: flex; 
    }

    .mobile-nav a {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    /* =========================================
       3. HERO SECTION
       ========================================= */
    

    /* =========================================
       4. MODULES & CONTENT SECTIONS
       ========================================= */
    .section-modules {
        padding: 6rem 2rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #bilan { 
        background: white; 
    }

    #programme { 
        background: #eef2f6; 
    }

    #equipe { 
        background: white; 
        padding-top: 6rem; 
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--primary);
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent);
    }

    /* Module Cards Grid */
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .module-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .module-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: var(--accent);
    }

    .card-img {
        height: 180px;
        background-size: cover;
        background-position: center;
    }

    .card-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .card-content h3 {
        font-size: 1.3rem;
        color: var(--primary);
        margin: 0.5rem 0 1rem 0;
    }

    .card-link {
        margin-top: auto;
        color: var(--accent);
        font-weight: 700;
        font-size: 0.9rem;
    }

    /* =========================================
       5. EDITORIAL SECTION
       ========================================= */
    .section-edito {
        padding: 4rem 2rem;
        display: flex;
        justify-content: center;
    }

    .edito-card {
        width: 90%;
        max-width: 1250px;
        background: white;
        padding: 3rem;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        border-left: 8px solid var(--accent);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .edito-content h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    .edito-intro {
        font-family: 'Georgia', serif;
        font-size: 1.15rem;
        color: #555;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        border-left: 3px solid #eee;
        padding-left: 20px;
    }

    .edito-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .edito-list li {
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
        font-size: 0.95rem;
    }

    .edito-list li::before {
        content: '✓';
        color: var(--accent);
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 800;
    }

    .edito-btn {
        background-color: var(--primary);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        font-size: 1rem;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0, 51, 153, 0.2);
    }

    .edito-btn:hover {
        background-color: var(--accent);
        transform: translateY(-2px);
    }

    .video-container {
        width: 100%;
        position: relative;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 16/9;
    }

    /* =========================================
       6. ZIGZAG PATTERN
       ========================================= */
    .zigzag-row {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 4rem;
    }

    .zigzag-row:last-child { 
        margin-bottom: 0; 
    }

    .zigzag-row.reverse { 
        flex-direction: row-reverse; 
    }

    .zigzag-img {
        flex: 0 0 250px;
        text-align: center;
    }

    .zigzag-img img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid white;
        box-shadow: var(--shadow-card);
    }

    .zigzag-text {
        flex: 1;
    }

    .zigzag-text h3 {
        color: var(--primary);
        font-size: 1.6rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .zigzag-text h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: var(--accent);
        margin-top: 5px;
        border-radius: 2px;
    }

    .zigzag-text p {
        text-align: justify;
        margin-bottom: 1rem;
        line-height: 1.7;
        color: #444;
    }

    /* =========================================
       7. TEAM SECTION
       ========================================= */
    .team-grid-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin: 0 auto;
        max-width: 1400px;
    }

    .team-card {
        aspect-ratio: 2 / 3;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        cursor: pointer;
        background: #eee;
        transition: transform 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-5px);
    }

    .team-card-header {
        grid-column: 1 / -1;
        width: 60%;
        margin: 0 auto 40px auto;
        aspect-ratio: 3 / 2 !important;
        border: 4px solid white;
        box-shadow: 0 10px 30px rgba(0, 51, 153, 0.2);
    }

    .team-photo {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top center;
        transition: 0.5s;
    }

    .team-card-header .team-photo { 
        object-position: center center; 
    }

    .team-card:hover .team-photo { 
        transform: scale(1.05); 
    }

    .team-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        min-height: 35%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        border-top: 3px solid var(--accent);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px 5px;
    }

    .team-firstname {
        color: var(--primary);
        font-weight: 700;
        font-size: 1rem;
        line-height: 1.1;
    }

    .team-name {
        color: var(--accent);
        font-weight: 800;
        text-transform: uppercase;
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .team-meta {
        font-size: 0.85rem;
        color: #444;
        border-top: 1px solid #ddd;
        padding-top: 4px;
        width: 90%;
    }

    .team-age {
        font-weight: 700;
        color: var(--primary);
        display: block;
    }

    .team-job {
        font-style: italic;
        font-size: 0.8rem;
        line-height: 1.2;
        max-height: 2.5em;
        overflow: hidden;
    }

    .load-more-btn {
        display: none;
        margin: 30px auto;
        background: var(--primary);
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .load-more-btn:hover {
        transform: translateY(-2px);
    }

    /* =========================================
       8. CONTACT SECTION
       ========================================= */
    .section-contact {
        padding: 5rem 2rem;
        background: white;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        max-width: 1100px;
        margin: 0 auto;
        background: var(--light-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .contact-info {
        background: var(--primary);
        color: white;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: white;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .info-icon {
        font-size: 1.5rem;
        width: 30px;
        text-align: center;
    }

    .contact-info a {
        color: white;
        text-decoration: underline;
    }

    .contact-info a:hover {
        color: var(--accent);
    }

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 20px;
    }

    .social-btn {
        background: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        font-size: 2rem;
        text-decoration: none !important;
    }

    .social-btn:hover {
        transform: scale(1.1);
    }

    .social-qr {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fa-facebook-f { 
        color: #1877F2; 
    }

    .fa-instagram {
        background: -webkit-linear-gradient(#405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-form {
        padding: 3rem;
        background: white;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--primary);
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #eee;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        transition: 0.3s;
    }

    .form-control:focus {
        border-color: var(--accent);
        outline: none;
    }

    .btn-submit {
        background: var(--accent);
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.1rem;
        cursor: pointer;
        width: 100%;
        transition: 0.3s;
    }

    .btn-submit:hover {
        background: #218838;
        transform: translateY(-2px);
    }

    /* =========================================
       9. FAQ SECTION
       ========================================= */
    .faq-category-title {
        color: var(--primary);
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.3rem;
        margin: 40px 0 20px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
    }

    .faq-category-title::after {
        content: '';
        flex-grow: 1;
        height: 2px;
        background: #eee;
    }

    .details-orange { 
        border-left: 4px solid var(--orange) !important; 
    }

    /* =========================================
       10. MODALS & OVERLAY
       ========================================= */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        z-index: 2000;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-content {
        background: white;
        max-width: 900px;
        margin: 50px auto;
        border-radius: 12px;
        position: relative;
        animation: slideIn 0.3s;
    }

    @keyframes slideIn {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-header {
        padding: 1.5rem;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-radius: 12px 12px 0 0;
    }

    .modal-body {
        padding: 2rem;
    }

    .close-modal {
        font-size: 2rem;
        cursor: pointer;
        color: #999;
        transition: 0.3s;
    }

    .close-modal:hover {
        color: var(--primary);
    }

    .profile-view {
        display: block;
        overflow: hidden;
    }

    .profile-img {
        float: left;
        margin-right: 30px;
        margin-bottom: 20px;
        width: 300px;
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
    }

    .profile-details h3 {
        font-size: 2rem;
        color: var(--primary);
        margin-top: 0;
    }

    .profile-bio {
        text-align: justify;
    }

    /* =========================================
       11. FOOTER
       ========================================= */
    footer {
        background: var(--primary-dark);
        color: #e0e0e0;
        padding: 4rem 2rem 2rem 2rem;
        position: relative;
        font-size: 0.95rem;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--primary) 33%, var(--white) 33%, var(--white) 66%, var(--accent) 66%);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;
    }

    .footer-col h4 {
        color: var(--white);
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--accent);
    }

    .footer-col p {
        line-height: 1.8;
        color: #ccc;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .footer-col a:hover {
        color: var(--accent);
        transform: translateX(5px);
    }

    .legal-text {
        font-size: 0.75rem;
        color: #889bbd;
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 15px;
    }

    .footer-social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-social-btn {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 1.1rem;
        transition: 0.3s;
    }

    .footer-social-btn:hover {
        background: var(--white);
        transform: translateY(-3px);
        color: var(--primary) !important;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.85rem;
        opacity: 0.6;
    }

    /* =========================================
       12. STICKY CTA (Call-to-Action)
       ========================================= */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--primary);
        color: white;
        text-align: center;
        padding: 12px;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        transform: translateY(100%);
        transition: 0.3s;
    }

    .sticky-cta.visible {
        transform: translateY(0);
    }

    /* =========================================
       13. RESPONSIVE - MOBILE
       ========================================= */
    @media (max-width: 1024px) {
        .header-share-top {
            display: none;
        }
    }

    @media (max-width: 900px) {
        .edito-card {
            grid-template-columns: 1fr;
            width: 95%;
            padding: 2rem;
            gap: 30px;
        }

        .edito-content {
            order: 2;
        }

        .video-container {
            order: 1;
            margin-bottom: 10px;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .footer-col h4::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-social-links {
            justify-content: center;
        }

        .footer-col a:hover {
            transform: none;
        }

        .modules-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        /* Header Mobile */
        .burger-menu {
            display: block;
        }

        .nav-menu {
            display: none;
        }

        .header-bottom {
            display: none;
        }

        .header-top {
            height: 60px;
            justify-content: space-between;
        }

        .logo-container {
            position: relative;
            left: 0;
        }

        header {
            padding: 5px 20px;
        }

        .hero {
            margin-top: 130px;
            width: 100%;
            height: auto;
            aspect-ratio: auto;
            background-size: contain;
            min-height: 200px;
        }

        .team-grid-container {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .team-card-header {
            width: 100%;
            aspect-ratio: 3/2 !important;
            margin-bottom: 20px;
        }

        .team-firstname {
            font-size: 0.9rem;
        }

        .team-name {
            font-size: 1rem;
        }

        .team-job {
            font-size: 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .team-meta {
            padding-top: 2px;
        }

        .load-more-btn {
            display: block;
        }

        .zigzag-row,
        .zigzag-row.reverse {
            flex-direction: column;
            text-align: left;
            gap: 20px;
        }

        .zigzag-img img {
            width: 150px;
            height: 150px;
            margin: 0 auto;
        }

        .profile-img {
            float: none;
            width: 100%;
            height: auto;
            margin: 0 auto 20px auto;
        }
    }


/* =========================================
   3. HERO SECTION (CORRECTION FINALE)
   ========================================= */
/* =========================================
   3. HERO SECTION (OPTI VERTICALITÉ)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 142px auto 0 auto; /* On garde votre valeur "collée" */
    margin-bottom: 0 !important;
    background-color: #ffffff;
    line-height: 0;
    
    /* NOUVEAU : On limite la hauteur pour voir le texte en dessous */
    max-height: 400px; 
    overflow: hidden; /* Empêche l'image de dépasser du cadre réduit */
}

.hero img {
    width: 100%;
    height: 400px; /* Doit être identique au max-height du parent */
    object-fit: cover; /* L'image remplit le cadre sans être déformée (effet "crop") */
    object-position: center; /* Centre la partie visible de l'image */
    display: block;
}
/* Dans la section @media (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px; 
        max-height: none; /* Supprime la limite de hauteur sur mobile */
    }
    .hero img {
        height: auto; /* L'image reprend son comportement normal sur mobile */
    }
}