/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #e0e0e0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    background-color: #4B7F52;
    margin-top: 60px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #e0e0e0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    background-color: #4B7F52;
    margin-top: 60px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #e0e0e0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    margin-top: 60px; /* Augmente l'espace après le header fixe */
    padding: 10px 0;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.nav-links {
    background-color: #2d2d2d;
    border-bottom: 1px solid #404040;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4B7F52;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #e0e0e0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    margin-top: 60px; /* Augmente l'espace après le header fixe */
    padding: 10px 0;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.nav-links {
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.nav-links a {
    color: #4B7F52;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #e0e0e0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    margin-top: 60px; /* Augmente l'espace après le header fixe */
    padding: 10px 0;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.nav-links {
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.nav-links a {
    color: #4B7F52;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

/* Styles de base */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Mode sombre - Styles de base */
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d;
}

body.dark-mode .stat-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .stat-number {
    color: #4B7F52;
}

body.dark-mode .stat-label {
    color: #b0b0b0;
}

body.dark-mode .service-container,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .help-container,
body.dark-mode .contact-container,
body.dark-mode .inscription-container {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .legal-card,
body.dark-mode .faq-item,
body.dark-mode .help-section,
body.dark-mode .contact-form,
body.dark-mode .inscription-form {
    background-color: #333333;
    border: 1px solid #404040;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode label {
    color: #b0b0b0;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333;
    border: 1px solid #404040;
    color: #e0e0e0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080;
}

body.dark-mode .cta-button,
body.dark-mode .custom-button {
    background-color: #4B7F52;
    color: #ffffff;
    border: 1px solid #4B7F52;
}

body.dark-mode .cta-button:hover,
body.dark-mode .custom-button:hover {
    background-color: #3d6a43;
    border-color: #3d6a43;
}

/* Header */
/* Header - Réduction de la taille */
/* Header - Correction drastique de la taille */
header, .header {
    background-color: #4B7F52;
    color: white;
    padding: 10px 20px; /* Taille intermédiaire */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px; /* Hauteur intermédiaire */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gauche img {
    height: 30px; /* Taille intermédiaire */
}

.centre {
    font-size: 16px; /* Taille intermédiaire */
}

.droite {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit l'espace */
}

.droite img {
    width: 20px; /* Plus petit */
    height: 20px;
    padding: 5px; /* Moins de padding */
}

.connexion-lien {
    font-size: 12px; /* Plus petit */
    padding: 5px 10px;
}

.connexion-lien {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.connexion-lien:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section héros */
/* Ajuste la marge haute pour le header plus petit */
.hero-section {
    margin-top: 20px; /* Espace après les liens de navigation */
    padding-top: 20px; /* Padding supplémentaire en haut */
}

.nav-links {
    margin-top: 60px; /* Augmente l'espace après le header fixe */
    padding: 10px 0;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 20px; /* Arrondit les coins */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.nav-links {
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.nav-links a {
    color: #4B7F52;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #4B7F52;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4B7F52;
}

/* Comment ça marche */
.how-it-works {
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    text-align: center;
    color: #4B7F52;
}

/* Services */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.custom-button {
    text-decoration: none;
    color: inherit;
    border: 3px solid #4B7F52;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    background-color: white;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.custom-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-decoration: none;
}

.custom-button span {
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
    text-decoration: none;
}

.custom-button p {
    text-decoration: none;
    color: #666;
}

.button-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.9rem;
    text-align: center;
    color: #666;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

/* Statistiques */
.stats-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    min-width: 150px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B7F52;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Mode sombre pour les statistiques */
body.dark-mode .stats-section {
    background-color: #1a1a1a !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e0e0 !important;
}

/* CTA Section */
.cta-section {
    background-color: #4B7F52;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background-color: white;
    color: #4B7F52;
    margin-top: 20px;
    border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container, .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .custom-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer et éléments associés */
footer {
    background-color: #4B7F52;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

.footer-main {
    background-color: #4B7F52;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px 60px 20px 60px;
    color: white;
}

.footer-main a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-main a:hover {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.footer-main h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
    align-items: flex-start;
}

.texte_footer {
    background-color: #4B7F52;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.texte_footer p {
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

/* Styles réseaux sociaux */
.social-container {
    text-align: center;
    margin-top: 0; 
}

.social-container p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: white;  
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.circle {
    width: 60px;
    height: 60px;
    background-color: white;  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 35px;
    height: 35px;
}

/* Styles pour carte postale */
.CartePostale {
    display: flex;
    align-items: flex-start;
    padding-top: 80px; 
}

.CartePostale a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Styles pour les infos pratiques */
.APROPOS, .INFOSPRATIQUES {
    padding-top: 0; /* Remis à 0 */
}

.APROPOS ul, .INFOSPRATIQUES ul {
    list-style: square;
    padding-left: 20px;
}

.APROPOS li, .INFOSPRATIQUES li {
    margin-bottom: 5px;
}

/* Si tu n'utilises pas la section nav-links, utilise plutôt ceci */
main, .container, .hero-section {
    padding-top: 70px; /* Assez d'espace pour éviter que le contenu soit sous le header */
}

/* Styles pour la page de connexion */
.login-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-family: 'Roboto Condensed', sans-serif;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.login-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 2px solid #5c8374;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
}

.login-button {
    width: 100%;
    max-width: 200px;
    padding: 12px;
    background-color: #5c8374;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.register-section {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.register-section p {
    margin-bottom: 15px;
    color: #666;
}

.register-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #5c8374;
    border: 2px solid #5c8374;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Pour les effets hover et transition */
.login-button:hover {
    background-color: #496b5e;
    transform: translateY(-2px);
}

.login-input:focus {
    border-color: #496b5e;
    outline: none;
}

.register-button:hover {
    background-color: #5c8374;
    color: white;
    transform: translateY(-2px);
}

/* Styles pour la description/texte */
.login-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

/* Styles pour le titre */
.login-container h2 {
    color: #5c8374;
    text-align: center;
    margin-bottom: 15px;
}

/* Hero Banner avec image de fond */
.hero-banner {
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/agriculture-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 50px; /* Espace pour le header */
    padding: 0 20px;
    border-radius: 25px; /* Coins arrondis */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #4B7F52;
    color: white;
    border: 2px solid #4B7F52;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section présentation avec vidéo */
.presentation {
    padding: 80px 20px;
    background-color: white;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h2 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 2rem;
}

.presentation-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .presentation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour la page Contact */
.contact-page {
    padding-top: 80px;
    padding-bottom: 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info i {
    margin-right: 10px;
    color: #4B7F52;
}

.contact-number {
    font-size: 1.5rem;
    margin: 20px 0;
}

.contact-number a {
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.contact-availability {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-address {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
}

.contact-address h3 {
    color: #4B7F52;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.address-info {
    flex: 1;
    min-width: 250px;
}

.map-container {
    flex: 2;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Styles pour la page Centre d'aide */
.help-center {
    padding-top: 80px;
    padding-bottom: 60px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-container button {
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-container button:hover {
    background-color: #3d6642;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Styles pour les cartes de catégorie dans le centre d'aide */
.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #4B7F52;
}

.category-card i {
    font-size: 2.5rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.category-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #3d6642;
}

.category-link i {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.quick-guides {
    margin-bottom: 60px;
}

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

.guide-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.guide-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.quick-faq {
    margin-bottom: 60px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #4B7F52;
    margin-bottom: 10px;
}

.view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #4B7F52;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #3d6642;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .address-container {
        flex-direction: column;
    }
    
    .map-container {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page de choix d'inscription */
.inscription-choice {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 300px);
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choice-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choice-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.choice-card i {
    font-size: 3rem;
    color: #4B7F52;
    margin-bottom: 20px;
}

.choice-card h2 {
    color: #4B7F52;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.choice-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.choice-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.choice-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.choice-card ul li:before {
    content: '✓';
    color: #4B7F52;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.choice-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B7F52;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s;
}

.choice-card:hover .choice-button {
    background-color: #3d6642;
}

@media (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .choice-card {
        padding: 30px;
    }
}

/* Styles pour les pages d'aide */
.help-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.help-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.help-sections {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.help-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.help-section h2 {
    color: #4B7F52;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section h2 i {
    font-size: 1.5rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #4B7F52;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3, .step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.help-content ul li:before {
    content: "•";
    color: #4B7F52;
    position: absolute;
    left: 0;
}

.help-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-button, .contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button {
    background: #f5f5f5;
    color: #333;
}

.contact-button {
    background: #4B7F52;
    color: white;
}

.back-button:hover {
    background: #eee;
}

.contact-button:hover {
    background: #3d6642;
}

/* Styles pour les cartes de guide */
.guide-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.guide-card i {
    font-size: 2rem;
    color: #4B7F52;
}

.guide-card h3 {
    color: #333;
    margin: 0;
}

.guide-card p {
    color: #666;
    margin: 0;
}

/* Styles pour les liens FAQ */
.faq-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4B7F52;
    text-decoration: none;
    font-weight: 500;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .help-container {
        padding: 0 1rem;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .back-button, .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }
}

/* Ajustements pour les appareils mobiles */
@media (max-width: 768px) {
    /* Ajustements généraux */
    body {
        font-size: 14px;
    }

    /* Header */
    header, .header {
        height: auto;
        padding: 10px;
        position: fixed;
    }

    .barre {
        flex-direction: column;
        gap: 10px;
    }

    .droite {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 60px 20px;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Navigation */
    .nav-links {
        margin-top: 120px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    /* Services */
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .custom-button {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .button-icon {
        width: 40px;
        height: 40px;
    }

    /* Presentation */
    .presentation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .presentation-text {
        padding: 0;
    }

    .presentation-text h2 {
        font-size: 1.8rem;
    }

    /* How it works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    /* FAQ */
    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 12px 15px;
    }

    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    /* Login page */
    .login-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .login-form {
        gap: 15px;
    }

    /* Service pages */
    .service-container {
        margin: 100px 20px;
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        padding: 15px;
    }

    /* Help center */
    .help-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        width: 100%;
        padding: 20px;
    }

    /* Contact page */
    .contact-form {
        padding: 20px;
    }

    .address-container {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-header h1 {
        font-size: 2rem;
    }

    .service-section {
        padding: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .login-input,
    .login-button,
    .register-button {
        padding: 10px;
    }

    .footer-main {
        padding: 30px 20px 15px 20px;
    }

    .social-container {
        margin-top: 20px;
    }

    .circle {
        width: 50px;
        height: 50px;
    }

    .circle img {
        width: 30px;
        height: 30px;
    }
}

/* Styles pour le bouton Dark Mode */
.dark-mode-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4B7F52;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dark-mode-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover i {
    transform: rotate(360deg);
}

/* Styles pour le mode sombre */
body.dark-mode {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.dark-mode header,
body.dark-mode .footer-main,
body.dark-mode .footer-bottom,
body.dark-mode .cta-section,
body.dark-mode .service-section,
body.dark-mode .help-section,
body.dark-mode .legal-container,
body.dark-mode .faq-container,
body.dark-mode .contact-container,
body.dark-mode .login-container,
body.dark-mode .help-container {
    background-color: #2d2d2d !important;
}

body.dark-mode .footer-main,
body.dark-mode .footer-bottom {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040;
}

body.dark-mode .footer-main a,
body.dark-mode .footer-main p,
body.dark-mode .footer-bottom p,
body.dark-mode .texte_footer {
    color: #e0e0e0 !important;
}

body.dark-mode .footer-main a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle {
    background-color: #404040 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .social-container .social-circle:hover {
    background-color: #4B7F52 !important;
}

body.dark-mode .social-container .social-circle i {
    color: #e0e0e0 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0e0e0 !important;
}

body.dark-mode .service-card,
body.dark-mode .help-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form,
body.dark-mode .login-form {
    background-color: #333333 !important;
    border: 1px solid #404040;
}

body.dark-mode .service-card:hover,
body.dark-mode .help-card:hover {
    background-color: #404040 !important;
}

body.dark-mode .service-description,
body.dark-mode .help-description,
body.dark-mode .contact-description,
body.dark-mode .login-description,
body.dark-mode p {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
}

body.dark-mode .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 1px solid #4B7F52 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .custom-button:hover {
    background-color: #404040 !important;
}

body.dark-mode .highlight-box {
    background-color: #333333 !important;
    border-left: 4px solid #4B7F52 !important;
}

body.dark-mode .faq-question {
    background-color: #333333 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-question:hover {
    background-color: #404040 !important;
}

body.dark-mode .faq-answer {
    background-color: #2d2d2d !important;
    color: #b0b0b0 !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #808080 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .hero-banner {
    background-color: #1a1a1a !important;
}

body.dark-mode .hero-content h1,
body.dark-mode .hero-content p {
    color: #e0e0e0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #b0b0b0 !important;
}

body.dark-mode .cta-section {
    background-color: #2d2d2d !important;
    border-top: 1px solid #404040 !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .cta-section h2,
body.dark-mode .cta-section p {
    color: #e0e0e0 !important;
}

body.dark-mode .cta-section .cta-button {
    background-color: #4B7F52 !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-mode .cta-section .cta-button:hover {
    background-color: #3d6642 !important;
}

body.dark-mode .nav-links {
    background-color: #2d2d2d !important;
    border-bottom: 1px solid #404040 !important;
}

body.dark-mode .nav-links a {
    color: #e0e0e0 !important;
}

body.dark-mode .nav-links a:hover {
    color: #4B7F52 !important;
}

body.dark-mode .presentation {
    background-color: #1a1a1a !important;
}

body.dark-mode .presentation-text h2 {
    color: #4B7F52 !important;
}

body.dark-mode .presentation-text p {
    color: #b0b0b0 !important;
}

body.dark-mode .how-it-works {
    background-color: #2d2d2d !important;
}

body.dark-mode .step {
    background-color: #333333 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .step h3 {
    color: #4B7F52 !important;
}

body.dark-mode .step p {
    color: #b0b0b0 !important;
}

body.dark-mode .services {
    background-color: #1a1a1a !important;
}

body.dark-mode .custom-button {
    background-color: #333333 !important;
    border: 2px solid #4B7F52 !important;
}

body.dark-mode .custom-button span {
    color: #4B7F52 !important;
}

body.dark-mode .custom-button p {
    color: #b0b0b0 !important;
}

body.dark-mode .faq-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .faq-item {
    background-color: #333333 !important;
    border: 1px solid #404040 !important;
}

body.dark-mode .faq-question {
    background-color: #404040 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .faq-answer {
    background-color: #333333 !important;
    color: #b0b0b0 !important;
}

body.dark-mode .stats-section {
    background-color: #2d2d2d !important;
}

body.dark-mode .stat-item {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.dark-mode .stat-number {
    color: #4B7F52 !important;
}

body.dark-mode .stat-label {
    color: #e0e

/* Correction alignement stats en mode sombre */
@media (min-width: 600px) {
    body.dark-mode .stats-section .stats-container {
      display: flex !important;
      flex-wrap: nowrap !important;
      justify-content: space-around !important;
      align-items: stretch !important;
      gap: 40px !important;
    }
    body.dark-mode .stats-section .stat-item {
      min-width: 180px !important;
      max-width: 220px !important;
      flex: 1 1 0 !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 10px 0 !important;
    }
  }