        /* 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;
        }
  
 