
        body {
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
            position: relative;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #081E66 0%, #0a2a8a 100%);
        }
        .module-card:hover {
            /* Animation plus prononcée */
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 0;
            width: 2px;
            height: 100%;
            /* Ligne en pointillé */
            background-image: linear-gradient(to bottom, #FFA500 50%, transparent 50%);
            background-size: 2px 10px;
        }
        .benefits-section-bg {
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 15px 15px;
        }
        /* Effet de surlignage "pinceau" */
        .title-highlight {
            position: relative;
            display: inline-block; /* Nécessaire pour le positionnement des pseudo-éléments */
            padding: 0.5em 0.2em; /* Ajoute de l'espace pour les "coins" */
        }
        /* Création des "coins" pour encadrer le titre */
        .title-highlight::before,
        .title-highlight::after {
            content: '';
            position: absolute;
            width: 40px; /* Largeur des traits du coin */
            height: 40px; /* Hauteur des traits du coin */
            border-color: #ffc107; /* Couleur ambre */
            border-style: solid;
        }
        .title-highlight::before {
            top: 0;
            left: 0;
            border-width: 5px 0 0 5px; /* Trait en haut et à gauche, plus épais */
        }
        .title-highlight::after {
            bottom: 0;
            right: 0;
            border-width: 0 5px 5px 0; /* Trait en bas et à droite, plus épais */
        }
        /* --- Nouvelles améliorations visuelles --- */

        /* 1. Texte en dégradé pour le titre principal */
        .text-gradient {
            background: linear-gradient(135deg, #FFFFFF, #d1e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        /* 2. Animations à l'apparition (on scroll) */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 3. Effet de lueur sur les boutons */
        .glow-on-hover:hover {
            box-shadow: 0 0 15px 0 rgba(255, 165, 0, 0.6);
        }

        /* 4. Effet de parallaxe sur l'image du header */
        #hero-image-container {
            perspective: 1000px;
        }
        #hero-image.parallax-effect {
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        /* Aligner le logo avec le contenu */
        .logo {
            margin-left: -1.5rem; /* Compense le padding du conteneur parent */
        }

        /* Styles pour la nouvelle barre de navigation */
        .nav-link {
            position: relative;
            color: #081E66;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: #ffc107;
        }

        /* Styles pour le footer importé de index.html */
        .footer {
            background: #1e3a8a;
            color: white;
            padding: 40px 2rem;
            text-align: center;
        }

        .footer h3 {
            margin-bottom: 1rem;
            color: #f39c12;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .footer p {
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }
    
    /* Styles pour le carrousel Alumni - UNIQUEMENT sur mobile */
    @media (max-width: 767px) {
        .alumni-carousel {
            display: flex;
            overflow-x: auto; /* Permet le défilement horizontal */
            scroll-snap-type: x mandatory; /* Force le défilement par "snap" */
            -webkit-overflow-scrolling: touch; /* Améliore le défilement sur iOS */
            scrollbar-width: none; /* Cache la barre de défilement sur Firefox */
        }
        .alumni-carousel::-webkit-scrollbar { display: none; } /* Cache la barre de défilement sur Chrome/Safari */
    
        .alumni-item {
            flex: 0 0 90%; /* Chaque élément prend 90% de la largeur pour laisser entrevoir le suivant */
            scroll-snap-align: center; /* Centre l'élément snappé */
            padding: 1rem;
        }
    } 

    /* Optionnel: Styles pour la navigation du carrousel */
    .carousel-navigation {
        text-align: center;
        margin-top: 10px;
    }

    .carousel-navigation button {
        padding: 5px 10px;
    }