
    /* ======== Variables CSS ======== */
    :root {
        --primary-green: #61a229;
        --dark-green: #4a7d1f;
        --light-bg: #f8f8f8;
        --white: #ffffff;
        --text-dark: #333333;
        --text-gray: #666666;
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Bloc unique avec deux colonnes */
    .two-columns-block {
        display: flex;
        gap: 40px;
        background: #fff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        flex-wrap: wrap;
        /* Pour que ça reste responsive */
    }

    .two-columns-block .content-column {
        flex: 1;
        /* Le texte garde une proportion de base */
    }

    .two-columns-block .image-column {
        flex: 1.5;
        /* L'image prend 1.5 fois plus de place que le texte */
    }

    /* Image responsive */
    .image-column img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        display: block;
    }

    /* Responsive : mobile */
    /* Responsive : mobile */
    @media (max-width: 768px) {
        .two-columns-block {
            flex-direction: column;
            display: flex;
            /* S'assure que Flexbox est actif */
        }

        .block {
            margin-top: 2%;
        }

        .image-column {
            margin-bottom: 25px;
            /* On change le margin pour espacer vers le bas */
            margin-top: 0;
            order: -1;
            /* MAGIQUE : Fait passer l'image au-dessus du texte sur mobile ! */
            width: 100%;
        }

        .image-column img {
            width: 100%;
            height: 200px;
            /* On force une belle hauteur pour l'agrandir */
            object-fit: cover;
            /* On recadre proprement sans déformer */
            border-radius: 12px;
        }
    }

    /* ======== Reset et base ======== */
    .programme-veo * {
        box-sizing: border-box;
    }

    /* ======== Hero Section ======== */

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(97, 162, 41, 0.7) 0%, rgba(74, 125, 31, 0.8) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-title {
        color: var(--white);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .hero-underline {
        width: 120px;
        height: 4px;
        background: var(--white);
        margin: 25px auto 0;
        border-radius: 2px;
        animation: expandWidth 0.6s ease-out 0.3s backwards;
    }

    /* ======== Content Section ======== */
    .content-section {
        padding: 10px 20px;
        background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    }

    .wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-blocks {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .block {
        background: var(--white);
        padding: 70px 35px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        position: relative;
        transition: var(--transition);
        overflow: hidden;
    }

    .block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(97, 162, 41, 0.03) 0%, transparent 100%);
        opacity: 0;
        transition: var(--transition);
    }

    .block:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .block:hover::before {
        opacity: 1;
    }

    .block-accent {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .block-icon {
        margin-bottom: 25px;
        animation: float 3s ease-in-out infinite;
    }

    .block-text {
        font-size: clamp(1rem, 2vw, 1.15rem);
        line-height: 1.8;
        color: var(--text-gray);
        margin: 0;
    }

    /* ======== Logos Section ======== */
    .logos-section {
        padding: 80px 20px;
        background: var(--white);
    }

    .logos-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .logos-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .logos-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-green);
        border-radius: 2px;
    }

    .logo-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .logo-link {
        display: inline-block;
        transition: var(--transition);
    }

    .logo-wrapper {
        padding: 25px 35px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border: 2px solid transparent;
    }

    .logo-wrapper img {
        max-height: 80px;
        width: auto;
        display: block;
        transition: var(--transition);
    }

    .logo-link:hover .logo-wrapper {
        transform: translateY(-5px) scale(1.05);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-green);
    }

    /* ======== Animations ======== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes expandWidth {
        from {
            width: 0;
        }

        to {
            width: 120px;
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* ======== Responsive Design ======== */
    @media screen and (min-width: 600px) and (max-width: 1024px) {
        .inner-hero .page-title .h1 {
            margin-bottom: 50%;
            font-size: 25px;
        }
    }

    @media (max-width: 1024px) {
        .inner-hero {
            height: 400px;
        }

        .content-section {
            padding: 70px 20px;
        }

        .logo-row {
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .inner-hero {
            height: 350px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .content-section {
            padding: 10px 15px 0px 15px;
        }

        .content-blocks {
            gap: 30px;
            grid-template-columns: 1fr;
        }

        .block {
            padding: 40px 25px;
        }

        .logos-section {
            padding: 60px 15px;
        }

        .logo-row {
            gap: 30px;
        }

        .logo-wrapper {
            padding: 20px 25px;
        }

        .logo-wrapper img {
            max-height: 60px;
        }
    }

    @media (min-width: 1024px) {
        .inner-hero-content-block {
            width: 81%;
        }
    }

    @media (max-width: 480px) {
        .inner-hero {
            height: 125px;
        }

        .inner-hero-content {
            max-width: 42.521vw;
        }

        .inner-hero .page-title .h1 {
            font-size: 15px;
        }

        .hero-title {
            font-size: 1.5rem;
        }

        .hero-underline {
            width: 80px;
            height: 3px;
        }

        .block {
            padding: 30px 20px;
        }

        .block-icon svg {
            width: 36px;
            height: 36px;
        }

        .logos-title {
            margin-bottom: 35px;
        }

        .logo-row {
            gap: 20px;
        }

        .logo-wrapper {
            padding: 15px 20px;
        }

        .logo-wrapper img {
            max-height: 50px;
        }
    }

    /* ======== Accessibilité ======== */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
