/* VARIABLES DE COULEURS */
:root {
    --primary-color: #0056b3; 
    --secondary-color: #ff9900; 
    --dark-bg: #1a1a1a;
    --light-bg: #f4f4f4;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--dark-bg);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 24px; font-weight: bold; }
.logo span { color: var(--primary-color); }

nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
nav ul li a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s;}
nav ul li a:hover { color: var(--secondary-color); }

.btn-nav {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
}
.btn-nav:hover { background-color: #004494; color: #fff !important; }

/* HERO SECTION */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1597872200969-2b65d56bd16b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Assombrit l'image pour lire le texte */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: transform 0.2s;
}
.btn:hover { transform: scale(1.05); }

.btn-primary { background-color: var(--primary-color); color: #fff; border: 2px solid var(--primary-color); }
.btn-secondary { background-color: transparent; color: #fff; border: 2px solid var(--secondary-color); }
.btn-secondary:hover { background-color: var(--secondary-color); }

/* SERVICES (3 Points Forts) */
.services-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.services-section h2 { font-size: 2.5rem; margin-bottom: 50px; color: var(--primary-color); }

.services-grid {
    display: grid;
    /* Force 3 colonnes sur PC */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.service-card .icon { font-size: 3.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.5rem;}

/* TESTIMONIALS (Témoignages) */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials-section h2 { font-size: 2.5rem; margin-bottom: 50px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
    position: relative;
}

.testimonial-card .stars { margin-bottom: 15px; font-size: 1.2rem; }
.testimonial-card p { margin-bottom: 20px; color: #555; }
.testimonial-card h4 { font-style: normal; color: var(--primary-color); }

/* FOOTER */
footer {
    background-color: var(--dark-bg);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

/* RESPONSIVE (Mobiles & Tablettes) */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr; /* Passe à 1 colonne sur petit écran */
    }
}

@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; padding: 15px;}
    nav ul { flex-direction: column; text-align: center; gap: 10px;}
    .hero-content h1 { font-size: 2.2rem; }
    .btn { display: block; margin: 10px auto; width: 80%; }
}
/* =========================================
   STYLES POUR LA PAGE BOUTIQUE
   ========================================= */

.bg-light {
    background-color: var(--light-bg);
}

/* En-tête de la boutique */
.shop-header {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.shop-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Barre de filtres */
.shop-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Grille des produits */
.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Carte Produit */
.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Badges (Promo, Nouveau) */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 5px;
    z-index: 10;
}

.badge.promo { background-color: #e74c3c; } /* Rouge */
.badge.nouveau { background-color: var(--primary-color); } /* Bleu */

/* Image du produit */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

/* Informations du produit */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info .category {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
    flex-grow: 1; /* Pousse le prix et le bouton vers le bas */
}

/* Prix */
.price {
    margin-bottom: 20px;
}

.new-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-color);
}

.old-price {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 10px;
}

/* Bouton WhatsApp */
.btn-whatsapp {
    display: block;
    text-align: center;
    background-color: #25D366; /* Vert officiel WhatsApp */
    color: #fff;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* =========================================
   STYLE DU MENU DÉROULANT (DROPDOWN)
   ========================================= */

.dropdown {
    position: relative; /* Permet d'ancrer le sous-menu ici */
}

/* Le sous-menu caché par défaut */
.dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%; /* S'affiche juste en dessous du lien principal */
    left: 0;
    background-color: var(--dark-bg);
    min-width: 260px; /* Largeur du menu déroulant */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 5px;
    z-index: 1001;
    overflow: hidden;
    
    /* Annule l'affichage horizontal du menu principal */
    flex-direction: column; 
    padding: 0;
    gap: 0;
}

/* Affichage au survol de la souris */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Style des liens à l'intérieur du menu déroulant */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #333; /* Petite ligne de séparation */
    transition: background-color 0.3s;
}

.dropdown-menu li:last-child a {
    border-bottom: none; /* Enlève la ligne sur le dernier élément */
}

/* Effet au survol d'un lien du sous-menu */
.dropdown-menu li a:hover {
    background-color: var(--primary-color);
    color: #fff;
    padding-left: 25px; /* Petit effet de glissement stylé */
}

/* ADAPTATION POUR LES TÉLÉPHONES (Mobile) */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static; /* Le menu s'intègre dans le flux normal */
        box-shadow: none;
        background-color: #2a2a2a; /* Fond un peu plus clair */
        width: 100%;
    }
}

/* =========================================
   STYLES POUR LA PAGE ABONNEMENTS
   ========================================= */

/* En-tête de la page Abonnements */
.pricing-header {
    background-color: var(--dark-bg);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 5px solid var(--primary-color);
}

.pricing-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Grille des prix */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: center; /* Centre les cartes verticalement */
}

/* Carte standard */
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.target-audience {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

/* Affichage du prix */
.pricing-card .price {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-card .amount {
    font-size: 3rem;
    font-weight: bold;
}

.pricing-card .currency, .pricing-card .period {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Liste des avantages */
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Bouton pour cartes standard */
.btn-outline {
    display: block;
    width: 100%;
    padding: 12px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* CARTE PREMIUM (Mise en avant) */
.pricing-card.premium {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15); /* Ombre bleutée */
    transform: scale(1.05); /* Rend la carte légèrement plus grande */
    padding: 50px 30px; /* Plus haute que les autres */
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
}

/* Badge "Le plus choisi" */
.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pricing-card.premium {
        transform: scale(1); /* Annule l'agrandissement sur mobile */
        padding: 40px 30px;
    }
    .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
}



/* =========================================
   STYLES POUR LA PAGE CONTACT & FORMULAIRE
   ========================================= */

/* En-tête de la page Contact */
.contact-header {
    background-color: var(--dark-bg);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 5px solid var(--primary-color);
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Grille principale (2 colonnes) */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* --- COLONNE GAUCHE (Infos) --- */
.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    background-color: var(--light-bg);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Gros bouton WhatsApp */
.btn-whatsapp-large {
    display: block;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    margin: 30px 0;
    transition: background-color 0.3s;
}

.btn-whatsapp-large:hover {
    background-color: #128C7E;
}

/* Réseaux Sociaux */
.social-links h4 {
    margin-bottom: 15px;
}

.social-btn {
    display: inline-block;
    background-color: #eee;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- COLONNE DROITE (Formulaire) --- */
.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary-color);
}

.contact-form-wrapper h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Style des champs de saisie */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #555;
}

/* Bouton Envoyer */
.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #004494;
}

/* RESPONSIVE (Mobiles) */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* Passe à 1 seule colonne */
        gap: 30px;
    }
}

/* =========================================
   STYLES POUR LA PAGE À PROPOS ET FAQ
   ========================================= */

/* Section À propos */
.about-section {
    background-color: #fff;
    padding: 60px 20px;
    border-bottom: 2px solid #eee;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* En-tête FAQ */
.faq-header {
    text-align: center;
    padding: 50px 20px 20px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Conteneur principal FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

/* Style de l'accordéon natif (details / summary) */
.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* La question (cliquable) */
.faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Enlève la petite flèche noire par défaut */
    position: relative;
    color: var(--text-color);
    background-color: #fcfcfc;
}

.faq-item summary:hover {
    color: var(--primary-color);
}

/* Enlève la flèche par défaut pour les navigateurs Webkit (Chrome/Safari) */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Ajoute un beau "+" à droite de la question */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}

/* Change le "+" en "-" quand la réponse est ouverte */
.faq-item[open] summary::after {
    content: '-';
}

.faq-item[open] summary {
    border-bottom: 1px solid #eee;
}

/* Le texte de la réponse */
.faq-answer {
    padding: 20px;
    background-color: #fff;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* L'image passe sous le texte sur téléphone */
    }
}

/* =========================================
   STYLES POUR LES PAGES DE SERVICES DÉTAILLÉS
   ========================================= */

/* En-tête spécifique aux pages de services */
.service-page-header {
    background: linear-gradient(135deg, var(--primary-color), #003d82);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.service-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Conteneur principal */
.service-details-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Liste à puces personnalisée */
.service-interventions {
    margin: 40px 0;
}

.service-interventions h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.check-list li span {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Boîte d'alerte Éthique / Sécurité */
.alert-box {
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    line-height: 1.6;
}

.alert-box.warning {
    background-color: #fff5f5; /* Rouge très clair */
    border-left: 5px solid #e74c3c; /* Bordure rouge vif */
    color: #c0392b;
}

.alert-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.alert-box p {
    margin-bottom: 10px;
}

.alert-box p:last-child {
    margin-bottom: 0;
}

/* Grille "Pourquoi nous choisir" */
.why-choose-us {
    margin-top: 50px;
    text-align: center;
}

.why-choose-us h2 {
    margin-bottom: 30px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Appel à l'action en bas de page */
.service-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.service-cta .small-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-details-container {
        padding: 20px;
        margin: 20px;
    }
}
/* Boîte d'information bleue (Pour les garanties) */
.alert-box.info {
    background-color: #e8f4fd; /* Bleu très clair */
    border-left: 5px solid var(--primary-color); /* Bordure bleue foncée */
    color: #004085;
}

/* Boîte d'information verte (Pour la sérénité et validation) */
.alert-box.success {
    background-color: #e6f9ed; /* Vert très clair */
    border-left: 5px solid #2ecc71; /* Bordure verte vif */
    color: #1e824c;
}
/* Style pour la méthode de travail (Liste numérotée) */
.methodology-section {
    margin: 50px 0;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.methodology-section h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.method-list {
    list-style-type: none; /* On cache les numéros basiques */
    counter-reset: etape; /* On crée notre propre compteur */
    padding-left: 0;
}

.method-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.method-list li::before {
    counter-increment: etape;
    content: counter(etape);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.method-list li strong {
    color: var(--text-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}
/* =========================================
   MISES À JOUR POUR LA NOUVELLE PAGE D'ACCUEIL
   ========================================= */

/* Grille de 4 cartes pour les services */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section : Pourquoi nous faire confiance */
.trust-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

/* Bannière Abonnements */
.subscription-banner {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 20px;
}

.subscription-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.subscription-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.subscription-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* =========================================
   NOUVEAU FOOTER PROFESSIONNEL
   ========================================= */
.main-footer {
    background-color: var(--dark-bg);
    color: #ddd;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.btn-whatsapp-small {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.btn-whatsapp-small:hover {
    background-color: #128C7E;
    color: #fff;
}

.payment-icons span {
    display: inline-block;
    margin-bottom: 8px;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
}
/* =========================================
   STYLES POUR LA PAGE DES CONDITIONS (CGV)
   ========================================= */

.legal-header {
    background-color: var(--dark-bg);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.legal-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.legal-container {
    max-width: 800px; /* Moins large pour faciliter la lecture des longs textes */
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legal-article {
    margin-bottom: 40px;
}

.legal-article h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.legal-article ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.legal-article ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-article ul li strong {
    color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-container {
        padding: 20px;
        margin: 20px;

    }

}



