
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #f8f8f8;
            color: #333;
        }

        /* En-tête */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #002654; /* Bleu */
            color: white;
            position: relative;
            z-index: 100;
        }

        header img {
            height: 50px;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 15px;
        }

        nav ul li {
            display: inline;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #FFD700; /* Or */
            border-radius: 5px;
        }

        .cta-button {
            background-color: #FFD700; /* Or */
            color: #002654;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.3s;
        }

        .cta-button:hover {
            background-color: #B11313; /* Rouge */
            color: white;
            transform: scale(1.05);
        }

        /* Section vidéo */
        .hero-section {
            height: 100vh;
            background-image: url('../photo/fond_index.png'); /* Utilisation de ../ pour remonter d'un dossier */
            opacity:   70;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #111;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeIn 1.5s ease-out forwards;
        }

        /* Bouton hamburger (par défaut masqué) */
.hamburger {
    display: none; /* Ne s'affiche que sur les petits écrans */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
        

        /* Slogan intégré */
        .hero-section h1 {
            font-size: 3rem;
            color: #B11313; /* Or */
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeIn 1.5s ease-out forwards;
        }

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

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .hero-buttons a {
            background-color: #B11313; /* Or */
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero-buttons a:hover {
            background-color: #FFD700; /* Rouge */
            transform: scale(1.05);
        }
        .features-section {
            background-color: #f8f8f8;
            padding: 50px 20px;
            text-align: center;
        }
        
        .features-section h1 {
            color: #002654; /* Bleu */
            margin-bottom: 30px;
        }
        
        .features-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap; /* Permet de passer sur plusieurs lignes si nécessaire */
        }
        
        .feature-card {
            background-color: #002654; /* Bleu */
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            width: calc(25% - 30px); /* Ajuste la largeur à 25% avec un gap de 30px */
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            min-width: 200px; /* Assure une taille minimale pour les cartes */
            max-width: 300px; /* Évite que les cartes soient trop grandes */
        }
        
        .feature-card:hover {
            transform: scale(1.05);
            box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .feature-card p {
            font-size: 1rem;
            line-height: 1.5;
        }
        
        /* Responsive pour les écrans moyens */
        @media (max-width: 1024px) {
            .features-container {
                gap: 20px; /* Réduit l'espace entre les cartes */
            }
        
            .feature-card {
                width: calc(33.33% - 20px); /* Affiche 3 cartes par ligne */
            }
        }
        
        /* Responsive pour les écrans petits */
        @media (max-width: 768px) {
            .feature-card {
                width: calc(50% - 20px); /* Affiche 2 cartes par ligne */
            }
        }
        
        /* Responsive pour les écrans très petits */
        @media (max-width: 480px) {
            .feature-card {
                width: 100%; /* Affiche 1 carte par ligne */
            }
        
            .features-container {
                gap: 15px; /* Réduit l'espace entre les cartes */
            }
        }
        

/* Section À propos */
.about-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.about-section h2 {
    color: #002654; /* Bleu */
    margin-bottom: 30px;
}

.about-section p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Avis clients */
.client-reviews {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

.client-reviews h2 {
    color: #002654; /* Bleu */
    margin-bottom: 30px;
}

.review-card {
    background-color: #002654; /* Bleu */
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.5;
}


        /* Section Avis améliorée */
        .client-reviews {
            background-color: #f8f8f8;
            padding: 50px 20px;
            text-align: center;
            position: relative;
            margin-top: 50px;
        }

        .client-reviews h2 {
            color: #002654; /* Bleu */
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .review-card {
            display: inline-block;
            background-color: #002654; /* Bleu */
            color: white;
            padding: 20px;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            border: 2px solid #FFD700; /* Or */
        }

        .review-card:hover {
            transform: scale(1.05);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
        }

        .review-card p {
            font-size: 1rem;
        }

        /* Pied de page */
        footer {
            background-color: #333;
            color: white;
            padding: 20px 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap; /* Permet de gérer le responsive */
        }

        .footer-section {
            flex: 1;
            padding: 0 20px;
            min-width: 200px; /* Assure une taille minimale pour les sections */
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #FFD700; /* Or */
        }

        .footer-section p, .footer-section ul, .footer-section a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 5px;
        }

        .footer-section ul li a:hover {
            color: #FFD700;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }

        .social-icons a img {
            transition: transform 0.3s;
        }

        .social-icons a img:hover {
            transform: scale(1.1);
        }

        /* Responsive */
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centre verticalement */
        align-items: center; /* Centre horizontalement */
        text-align: center; /* Centre le texte */
    }

    .footer-section {
        padding: 10px 0;
        text-align: center; /* Assure que chaque section a son texte centré */
    }

    .footer-section ul {
        list-style: none; /* Supprime les puces des listes */
        padding: 0;
    }

    .footer-section ul li {
        margin: 5px 0; /* Ajoute un peu d'espacement entre les éléments de la liste */
    }

    .social-icons {
        display: flex;
        justify-content: center; /* Centre les icônes socialement */
        gap: 15px;
        margin-bottom: 10px;
    }

    .social-icons a img {
        width: 30px; /* Ajuste la taille des icônes si nécessaire */
        height: 30px;
    }
}

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .review-card {
                width: 90%;
            }
        }

        /* Responsive pour les petits écrans */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Cache le menu classique */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: #002654;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 90px); /* Limite la hauteur pour s'adapter à l'écran */
        overflow-y: auto; /* Active le défilement si nécessaire */
        z-index: 1000; /* Assure que le menu reste au-dessus d'autres éléments */
    }

    nav ul.active {
        display: flex; /* Affiche le menu lorsqu'il est activé */
    }

    .hamburger {
        display: block; /* Affiche le bouton hamburger */
    }

    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        display: block;
        transition: background-color 0.3s;
    }

    nav ul li a:hover {
        background-color: #FFD700; /* Or */
    }
}

