
        /* Couleurs unies */
        .gradient-bg {
            background-color: #1e40af; /* Bleu */
        }
        
        .gradient-bg-dark {
            background-color: #1e3a8a; /* Bleu foncé */
        }
        
        /* Animations au défilement - PLUS LENTES ET VISIBLES */
        .scroll-animate {
            opacity: 0;
            transform: translateY(80px);
            transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate-right {
            opacity: 0;
            transform: translateX(100px);
            transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate-scale {
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate-rotate {
            opacity: 0;
            transform: rotateY(180deg);
            transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate-fade {
            opacity: 0;
            transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-animate.animated,
        .scroll-animate-left.animated,
        .scroll-animate-right.animated,
        .scroll-animate-scale.animated,
        .scroll-animate-rotate.animated,
        .scroll-animate-fade.animated {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1) rotateY(0);
        }
        
        /* Délais pour les animations - PLUS LONGS */
        .delay-100 { transition-delay: 0.4s; }
        .delay-200 { transition-delay: 0.8s; }
        .delay-300 { transition-delay: 1.2s; }
        .delay-400 { transition-delay: 1.6s; }
        .delay-500 { transition-delay: 2s; }
        .delay-600 { transition-delay: 2.4s; }
        .delay-700 { transition-delay: 2.8s; }
        .delay-800 { transition-delay: 3.2s; }
        .delay-900 { transition-delay: 3.6s; }
        .delay-1000 { transition-delay: 4s; }
        
        /* Cartes */
        /* .team-card, .value-card, .reason-card {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .team-card:hover, .value-card:hover, .reason-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
        }
         */
        /* .team-card::before, .value-card::before, .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #f59e0b;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        } */
        
        .team-card:hover::before, .value-card:hover::before, .reason-card:hover::before {
            transform: scaleX(1);
        }
        
        /* Timeline */
        .history-timeline {
            position: relative;
        }
        
        .history-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #1e40af;
            z-index: 0;
        }
        
        .timeline-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1e40af;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
            border: 4px solid white;
            box-shadow: 0 0 0 2px #f59e0b;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .timeline-dot:hover {
            transform: scale(1.2) rotate(15deg);
            background-color: #f59e0b;
        }
        
        .timeline-content {
            margin-left: 60px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .timeline-item:hover .timeline-content {
            transform: translateX(10px);
        }
        
        /* Effets créatifs */
        .hover-grow {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hover-grow:hover {
            transform: scale(1.1);
        }
        
        /* Icônes animées */
        .icon-animate {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .value-card:hover .icon-animate, .reason-card:hover .icon-animate {
            transform: scale(1.2) rotate(10deg);
            color: #f59e0b;
        }
        
        /* Effet de particules pour les cartes */
        .value-card::after, .team-card::after, .reason-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }
        
        .value-card:hover::after, .team-card:hover::after, .reason-card:hover::after {
            opacity: 1;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scroll-animate,
            .scroll-animate-left,
            .scroll-animate-right,
            .scroll-animate-scale,
            .scroll-animate-rotate,
            .scroll-animate-fade {
                transition-duration: 1.2s;
            }
            
            .history-timeline::before {
                left: 15px;
            }
            
            .timeline-content {
                margin-left: 45px;
            }
            
            .timeline-dot {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 640px) {
            .history-timeline::before {
                left: 12px;
            }
            
            .timeline-content {
                margin-left: 40px;
            }
            
            .timeline-dot {
                width: 25px;
                height: 25px;
                font-size: 0.8rem;
                border: 3px solid white;
            }
            
            .timeline-item:hover .timeline-content {
                transform: translateX(5px);
            }
        }
        
        /* Effet pour les statistiques */
        .stat-number {
            transition: all 0.8s ease;
        }
        
        .value-card:hover .stat-number {
            transform: scale(1.2);
            color: #f59e0b;
        }
 