        /* Styles personnalisés pour une touche unique */
        .bg-hero {
          /*  background: linear-gradient(rgba(0, 83, 40, 0.8), rgba(247, 222, 9, 0.7)), url('https://images.unsplash.com/photo-1543269865-cbf427effbad?q=80&w=2070&auto=format&fit=crop') center center;*/
            background: linear-gradient(rgba(0, 83, 40, 0.8), rgba(247, 222, 9, 0.7)), url('../assets/images/accueil.jpg') center center;
            background-size: cover;
            color: white;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .feature-icon {
            font-size: 3rem;
            color: #005328; /* Vert foncé du drapeau du Bénin */
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 4px;
            background: #f7de09; /* Jaune du drapeau du Bénin */
            bottom: 0;
            left: calc(50% - 30px);
        }

        .card-course:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease-in-out;
        }

/* Styles pour la section Tarifs */
        .pricing-card {
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            border-color: #005328;
        }

        .pricing-card.recommended {
            border: 2px solid #005328;
            transform: scale(1.05);
            z-index: 10;
        }
        
        .pricing-card .card-header {
            background-color: #f8f9fa;
        }

        .pricing-card.recommended .card-header {
            background-color: #005328;
            color: white;
            font-weight: bold;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .price-note {
            color: #6c757d;
        }

        .testimonial-card {
            background-color: #f8f9fa;
        }
        
        .footer {
            background-color: #343a40;
        }

        /* Style du Modal Filières */
.modal-filiere-layout {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .modal-filiere-layout { flex-direction: row; height: 70vh; }
    .filiere-list-col { width: 35%; border-right: 1px solid #eee; overflow-y: auto; }
    .filiere-detail-col { width: 65%; overflow-y: auto; background-color: #f9fbfd; }
}

/* Liste des filières */
.filiere-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filiere-item:hover, .filiere-item.active {
    background-color: #eef2ff;
    color: #4f46e5;
    padding-left: 25px; /* Petit effet de glissement */
}
.filiere-item.active {
    border-left: 4px solid #4f46e5;
    font-weight: 600;
}

/* Badges matières */
.badge-matiere {
    background-color: #e0e7ff;
    color: #4338ca;
    font-weight: 500;
    padding: 8px 12px;
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.badge-matiere:hover {
    background-color: #4338ca;
    color: white;
    transform: scale(1.05);
}

/* Timeline Design pour les classes */
.timeline-container { position: relative; padding-left: 20px; }
.timeline-item { position: relative; padding-left: 30px; }
.timeline-marker {
    position: absolute;
    left: 0; top: 15px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #4f46e5;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #e0e7ff;
    z-index: 2;
}
.timeline-item::before {
    content: ''; position: absolute;
    left: 5px; top: 25px; bottom: -25px;
    width: 2px; background: #e0e7ff;
}
.timeline-item:last-child::before { display: none; }

/* Animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.4s ease-out forwards; }
  
 