:root {
    --background-color: #F4F4F4;
    --text-color: #2C3E50;
    --font-primary: 'Poppins', sans-serif;
    --primary-color: #422565;
    --accent-color: #ed2294;
    --hover-color: #ef6fa5;
    --secondary-color: #7f2a8c;
    --highlight-color: #1ae085;
    --white-color: #FFFFFF;
}

/* Global */
body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Boutons */
.btn-primary {
    background-color: var(--highlight-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--highlight-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    text-align: center;
    padding: 100px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    animation: fadeIn 1.2s ease-in-out;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content .btn-primary {
    animation: fadeIn 1.8s ease-in-out;
}

/* Diagonales entre sections */
.diagonal {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.diagonal-light {
    background: var(--secondary-color);
}

.diagonal-dark {
    background: var(--highlight-color);
}

/* Services Section */
.services-section {
    background: var(--background-color);
    padding: 60px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.9em;
    color: var(--text-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Avantages */
.advantages-section {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
}

.advantages-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.advantage {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage i {
    font-size: 2.5em;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.advantage h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.advantage p {
    font-size: 0.9em;
    color: var(--text-color);
}

.advantage:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call-to-Action Section */
.cta-section {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 50px 20px;
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-section .btn-secondary {
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 10px;
        clip-path: none;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .advantages-grid {
        flex-direction: column;
    }
}

/* Animation au Scroll */
[data-scroll="fade"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

[data-scroll="fade"].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="slide-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

[data-scroll="slide-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

[data-scroll="zoom"].visible {
    opacity: 1;
    transform: scale(1);
}

/* ===========================
   Boutons : Animation globale
=========================== */
.btn-primary, .btn-secondary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--white-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px); /* Déplacement subtil */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--hover-color); /* Changement de couleur */
}

/* Effet de pulsation */
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

/* Texte au-dessus de l'effet */
.btn-primary, .btn-secondary {
    z-index: 1;
}

/* ===========================
   Animation au clic
=========================== */
.btn-primary:active, .btn-secondary:active {
    transform: scale(0.95); /* Réduction légère pour l'effet de clic */
    transition: transform 0.1s ease;
}

/* ===========================
   Animation pour boutons larges
=========================== */
.btn-primary.large, .btn-secondary.large {
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
}

.btn-primary.large:hover, .btn-secondary.large:hover {
    transform: translateY(-4px); /* Animation légèrement plus marquée */
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Animation pour boutons de petite taille
=========================== */
.btn-primary.small, .btn-secondary.small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 4px;
}

.btn-primary.small:hover, .btn-secondary.small:hover {
    transform: translateY(-2px); /* Animation plus subtile */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Hero Section (Packs Page)
=========================== */
.packs-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.packs-hero h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    animation: fadeIn 1.2s ease-in-out;
}

.packs-hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* ===========================
   Packs Section
=========================== */
.packs-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--background-color);
}

.packs-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.packs-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pack-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card.featured {
    background: var(--accent-color);
    color: var(--white-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pack-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pack-header p {
    font-size: 1em;
    color: var(--text-color);
}

.pack-price {
    font-size: 2em;
    margin: 20px 0;
    color: var(--highlight-color);
}

.pack-price p {
    font-size: 0.8em;
    color: var(--text-color);
}

.pack-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pack-features li {
    font-size: 0.9em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-features i {
    color: var(--highlight-color);
}

/* Responsive */
@media (max-width: 768px) {
    .packs-grid {
        flex-direction: column;
        align-items: center;
    }

    .pack-card {
        margin-bottom: 20px;
    }
}

/* ===========================
   Onglets
=========================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-link {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tab-link:hover {
    background-color: var(--hover-color);
}

.tab-link.active {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* ===========================
   Hero Section
=========================== */
.packs-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.packs-hero h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.packs-hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* ===========================
   Diagonales
=========================== */
.diagonal {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.diagonal-light {
    background: var(--secondary-color);
}

.diagonal-dark {
    background: var(--highlight-color);
}

/* ===========================
   Section Estimation
=========================== */
.estimation-section {
    background: var(--background-color);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.estimation-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: -1;
}

.estimation-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
}

.estimation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1em;
    font-weight: bold;
    color: var(--text-color);
    display: block;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-color);
    background: var(--white-color);
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: var(--text-color);
}

.price-tag {
    font-size: 0.9em;
    color: var(--accent-color);
    font-weight: bold;
}

.result {
    margin-top: 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
}

.result span {
    font-size: 1.8em;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .estimation-form {
        gap: 15px;
    }

    .form-group {
        text-align: center;
    }

    .radio-group, .checkbox-group {
        flex-direction: column;
        gap: 5px;
    }

    .result {
        font-size: 1.2em;
    }
}

/* ===========================
   Section Disclaimer
=========================== */
.disclaimer-section {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 20px 15px;
    text-align: center;
    border-top: 5px solid var(--highlight-color);
    border-bottom: 5px solid var(--highlight-color);
}

.disclaimer-section p {
    font-size: 1em;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.disclaimer-section i {
    font-size: 1.5em;
    color: var(--highlight-color);
}

@media (max-width: 768px) {
    .disclaimer-section p {
        font-size: 0.9em;
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-section i {
        margin-bottom: 10px;
    }
}

/* ===========================
   Section Formulaire Contact
=========================== */
.contact-form-section {
    background: var(--background-color);
    padding: 60px 20px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    font-size: 1em;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-color);
    background: var(--white-color);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(237, 34, 148, 0.5);
    outline: none;
}

textarea {
    resize: none;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 0 10px;
    }
}


/* ===========================
   Message de succès
=========================== */
.success-message {
    background: var(--highlight-color);
    color: var(--white-color);
    font-size: 1.2em;
    padding: 15px 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Par défaut caché */
}

.success-message p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 1.5em;
    color: var(--white-color);
}

/* ===========================
   Responsive Ajustements
=========================== */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--background-color);
    padding: 60px 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: left;
    font-size: 1.2em;
    padding: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--hover-color);
}

.faq-answer {
    background: var(--white-color);
    color: var(--text-color);
    padding: 15px;
    display: none; /* Cacher les réponses par défaut */
    text-align: left;
    border-top: 1px solid var(--primary-color);
}

/* Animation au clic */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hero-section {
        padding: calc(70px + 20px) 80px; /* Ajout d'un padding supplémentaire basé sur la hauteur du header */
        clip-path: none; /* Supprime l'effet de découpe sur mobile si nécessaire */
    }
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
        margin: 0 auto; /* Centrer le formulaire */
        width: 90%; /* Utilisation maximale de l'espace sans toucher les bords */
        box-shadow: none; /* Supprimer l'ombre pour un design plus simple sur mobile */
    }

    .form-group label {
        font-size: 1em;
        margin-bottom: 5px;
        display: block; /* S'assurer que le label reste au-dessus du champ */
    }

    .form-group input,
    .form-group textarea {
        font-size: 1em;
        padding: 10px;
        border-width: 1px; /* Réduire l'épaisseur de la bordure pour un design plus épuré */
    }

    .captcha-group {
        flex-direction: column; /* Passer en colonne pour éviter l'encombrement */
        gap: 15px;
        align-items: flex-start;
        width: 100%;
    }

    .captcha-container span {
        font-size: 1em;
        text-align: left; /* Alignement pour éviter la confusion visuelle */
    }

    .form-actions button {
        font-size: 1em;
        padding: 12px;
        width: 100%; /* Largeur complète pour une meilleure expérience tactile */
    }
}

/* Responsive pour très petits écrans */
@media (max-width: 480px) {
    .contact-form {
        padding: 15px;
        width: 95%; /* Réduction de la largeur pour s'adapter à des écrans ultra-petits */
    }

    .form-group label {
        font-size: 0.85em;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9em;
        padding: 8px;
    }

    .captcha-group {
        flex-direction: column;
        gap: 10px;
    }

    .captcha-container span {
        font-size: 0.9em;
    }

    .form-actions button {
        font-size: 0.85em;
        padding: 10px;
    }
}

/* Barre de défilement personnalisée pour les navigateurs modernes */
::-webkit-scrollbar {
    width: 10px; /* Largeur de la barre de défilement */
    background-color: var(--background-color); /* Couleur d'arrière-plan */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Dégradé */
    border-radius: 5px; /* Arrondi de la barre */
    border: 2px solid var(--background-color); /* Bordure pour séparer le pouce du fond */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color); /* Couleur lors du survol */
}

::-webkit-scrollbar-track {
    background-color: var(--background-color); /* Couleur de la piste */
    border-radius: 5px; /* Arrondi de la piste */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); /* Légère ombre intérieure */
}

/* Style pour Firefox */
* {
    scrollbar-width: thin; /* Barre fine */
    scrollbar-color: var(--primary-color) var(--background-color); /* Couleurs pour la barre et le fond */
}

/* Hero Section pour le Sitemap */
.sitemap-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    padding: 80px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.sitemap-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.sitemap-hero p {
    font-size: 1.2em;
    margin-top: 0;
}

/* Section principale du Sitemap */
.sitemap-section {
    background: var(--background-color);
    padding: 40px 20px;
    text-align: left;
}

.sitemap-section h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sitemap-list li a {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sitemap-list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px); /* Légère animation au survol */
}

/* Section légale */
.legal-section {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 40px 20px;
    text-align: center;
}

.legal-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--highlight-color);
}

.legal-section .sitemap-list li a {
    color: var(--white-color);
}

.legal-section .sitemap-list li a:hover {
    color: var(--highlight-color);
}

/* Diagonal separators */
.diagonal-light {
    background: var(--primary-color);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    height: 50px;
}

.diagonal-dark {
    background: var(--background-color);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    height: 50px;
}

/* Responsive pour le Sitemap */
@media (max-width: 768px) {
    .sitemap-hero h1 {
        font-size: 2em;
    }

    .sitemap-hero p {
        font-size: 1em;
    }

    .sitemap-section h2, .legal-section h2 {
        font-size: 1.8em;
    }

    .sitemap-list li a {
        font-size: 1em;
    }
}

/* Style des liens avec FAS */
.sitemap-list li a {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacement entre l'icône et le texte */
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.sitemap-list li a i {
    color: var(--highlight-color); /* Couleur des icônes */
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.sitemap-list li a:hover {
    color: var(--accent-color);
}

.sitemap-list li a:hover i {
    color: var(--accent-color);
}

/* Fonctionnalités supplémentaires */
.features-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espacement entre les options */
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center; /* Aligne verticalement les éléments */
    gap: 10px; /* Espacement entre la case à cocher et le texte */
    width: calc(33.33% - 20px); /* Trois colonnes avec espacement */
    box-sizing: border-box;
}

.feature-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--highlight-color); /* Couleur personnalisée pour les cases cochées */
}

.feature-item label {
    font-size: 1em;
    font-weight: bold;
    color: var(--text-color);
}

.feature-item span {
    font-size: 0.9em;
    color: var(--hover-color);
    font-weight: normal;
}

/* =============================
   Styles pour les Options Design
============================= */
.design-group {
    display: flex;
    justify-content: space-around; /* Égalise l'espacement */
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.design-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 1em;
    color: var(--text-color);
    font-weight: bold;
}

.design-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--highlight-color);
}

.design-option span {
    color: var(--hover-color);
    font-size: 0.9em;
    font-weight: normal;
}

/* Titre pour Design et Fonctionnalités */
.section-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
}

/* Alignement et espacement */
.design-group, .features-group {
    margin-bottom: 20px;
}

.features-group {
    border-top: 2px solid var(--secondary-color);
    padding-top: 15px;
}

/* Amélioration des styles */
.design-group .section-title {
    margin-bottom: 20px;
}

.features-group .section-title {
    margin-bottom: 15px;
    text-align: left;
}

/* ==============================
   Popup Cookies
============================== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-color);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    padding: 20px;
    z-index: 1000;
    animation: slideIn 0.5s ease-in-out;
}

.cookie-popup .cookie-content {
    text-align: center;
}

.cookie-popup h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.cookie-popup p {
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-popup button {
    font-size: 0.9em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-popup .btn-primary {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.cookie-popup .btn-primary:hover {
    background-color: var(--hover-color);
}

.cookie-popup .btn-secondary {
    background-color: var(--highlight-color);
    color: var(--white-color);
}

.cookie-popup .btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* Animation Slide-In */
@keyframes slideIn {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Disparition */
.cookie-popup.hidden {
    display: none;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 2.8em;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.2em;
    margin-top: 15px;
}

/* Notre Histoire */
.about-story {
    padding: 60px 20px;
    background: var(--white-color);
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-image {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Nos Valeurs */
.about-values {
    background: var(--background-color);
    padding: 60px 20px;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item i {
    font-size: 2.5em;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.value-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item:hover {
    transform: translateY(-10px);
}

/* Appel à l'action */
.about-cta {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 50px 20px;
}

.about-cta h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.about-cta p {
    margin-bottom: 20px;
}

.about-cta .btn-primary {
    padding: 12px 30px;
    font-size: 1.2em;
    font-weight: bold;
}
