        .history-section {
            padding: 5rem 2rem;
            /*background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);*/
        }

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


        .history-intro {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
        }

        /* Grille de contenu */
        .history-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .history-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .history-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: #e63946;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a202c;
        }

        .card-content ul {
            list-style: none;
            padding: 0;
        }

        .card-content li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .card-content li:before {
            content: "•";
            color: #e63946;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* Section promotion */
        .promotion-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .promotion-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .promotion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .promotion-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            border-left: 4px solid #e63946;
        }

        .promotion-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #e63946;
            margin-bottom: 0.5rem;
        }

        .promotion-field {
            font-size: 1.1rem;
            color: #4a5568;
        }

        .promotion-name {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e9ecef;
            font-style: italic;
            color: #6c757d;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .history-section {
                padding: 3rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .history-intro {
                padding: 2rem;
            }
            
            .history-grid {
                grid-template-columns: 1fr;
            }
            
            .promotion-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .history-card, .promotion-section {
            animation: fadeIn 1s ease-out forwards;
        }

        .history-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .history-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .promotion-section {
            animation-delay: 0.6s;
        }
