/* --- Réinitialisation et configuration de base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Assure que padding et border sont inclus dans la taille de l'élément */
}

body {
    font-family: 'Inter', sans-serif; /* Police moderne et lisible */
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

/* --- Section Hero --- */
.hero-section {
    position: relative; /* Nécessaire pour positionner l'overlay */
    height: 100vh; /* Prend 95% de la hauteur de l'écran */
    margin-top: -76px;
    min-height: 650px; /* Hauteur minimale pour éviter que le contenu ne soit écrasé */
    display: flex;
    align-items: center; /* Centre le contenu verticalement */
    justify-content: flex-start; /* Aligne le contenu à gauche */
    padding: 110px 8% 0 8%; /* Marge intérieure sur les côtés */

    /* --- L'image de fond --- */
    background-image: url('ComfyUI_00016_.png'); /* <-- VOTRE IMAGE ICI */
    background-size: cover; /* L'image couvre toute la section */
    background-position: center center; /* Centre l'image */
    
    color: #ffffff; /* Texte en blanc pour le contraste */
}

/* --- Overlay : L'astuce "Sex Appeal" et Lisibilité --- */
.hero-section::before {
    content: ''; /* Obligatoire pour un pseudo-élément */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Dégradé sombre qui part de la gauche (où est le texte) vers la droite */
    /* Cela assure la lisibilité sans assombrir toute l'image */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.1) 100%);
    
    z-index: 1; /* Se place entre le fond et le contenu */
}

/* --- Conteneur du contenu (au-dessus de l'overlay) --- */
.hero-container {
    position: relative; /* Pour être au-dessus de l'overlay */
    z-index: 2;
    max-width: 650px; /* Limite la largeur du texte pour la lisibilité */
}

.hero-container h1 {
    font-size: 3.2rem; /* Taille de police large et impactante */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Ombre portée pour détacher le texte */
}

.hero-container .hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 32px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* --- Formulaire d'inscription --- */
.hero-form {
    display: flex;
    gap: 12px; /* Espace entre l'input et le bouton */
    max-width: 500px;
flex-wrap: wrap; /* <-- AJOUTER CETTE LIGNE */
}

.hero-form input[type="email"] {
    flex: 1 1 250px; /* L'input prend toute la place disponible */
    padding: 16px 20px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Coins arrondis = look moderne */
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.hero-form button {
    flex: 1 1 auto;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    background-color: #E6007A; /* Un bleu "tech" accessible et pro */
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Effet au survol pour le "sex appeal" */
.hero-form button:hover {
    background-color: #B2005C; /* Couleur plus foncée au survol */
    transform: translateY(-2px); /* Léger "lift" */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Responsive Design (pour mobile) --- */
@media (max-width: 768px) {
    .hero-section {
        height: auto; /* Hauteur automatique sur mobile */
        min-height: 100vh; /* Prend au moins tout l'écran */
        padding: 100px 5%; /* Plus de padding en haut/bas */
        justify-content: center; /* Centrer le conteneur */
        text-align: center; /* Centrer le texte */
    }

    /* L'overlay devient plus uniforme pour garantir la lisibilité sur petit écran */
    .hero-section::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.6) 100%);
    }

    .hero-container h1 {
        font-size: 2.5rem; /* Taille de titre réduite pour mobile */
    }

    .hero-container .hero-subtitle {
        font-size: 1rem;
    }

    .hero-form {
        flex-direction: column; /* Le formulaire se pile verticalement */
        width: 100%;
        max-width: 400px;
        margin: 0 auto; /* Centrer le formulaire */
    }

    /* Réinitialise le 'flex' pour le mode colonne */
    .hero-form input[type="email"],
    .hero-form button {
        flex: none; /* Annule le 'flex: 1 1 ...' du desktop */
        width: 100%; /* S'assure qu'ils prennent toute la largeur */
    }
}

/* --- Conteneur global (pour centrer le contenu) --- */
/* Nous le réutiliserons pour les autres sections */
.container {
    max-width: 1200px; /* Largeur maximale du contenu */
    margin: 0 auto; /* Centre le conteneur */
    padding: 0 20px; /* Léger padding de sécurité */
}

/* --- Style des Titres de Section --- */
h2 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #222; /* Couleur de texte sombre, pas noir pur */
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 700px; /* Limite la largeur pour la lisibilité */
    margin: 0 auto 50px auto; /* Centre le sous-titre */
}


/* ======================= */
/* SECTION "POUR QUI ?"  */
/* ======================= */
.feature-section {
    padding: 80px 8%; /* Espace intérieur en haut/bas */
    background-color: #f9f9f9; /* Fond très légèrement gris pour délimiter le bloc */
}

.feature-grid {
    display: grid;
    /* "Sex appeal" : Crée automatiquement des colonnes (min 280px)
      S'adapte tout seul : 3 colonnes sur desktop, 2 sur tablette, 1 sur mobile.
    */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Espace entre les cartes */
    text-align: left; /* Annule le text-align:center du titre */
}

.feature-item {
    background-color: #ffffff; /* Cartes blanches */
    padding: 35px 30px;
    border-radius: 12px; /* Coins arrondis modernes */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Ombre légère et pro */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;         /* <-- AJOUTER */
    flex-direction: column; /* <-- AJOUTER */}

/* Effet "lift" au survol */
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem; /* Taille de l'icône (votre "✅") */
    display: block;
    margin-bottom: 15px;
    /* Vous pouvez remplacer le "✅" par une vraie icône (ex: SVG) plus tard */
    color: #E6007A; /* Couleur de votre marque pour les icônes */
align-self: center; /* <-- AJOUTER (centre l'icône dans le conteneur flex) */}

.feature-icon svg {
    width: 30px;  /* Taille explicite pour les SVG */
    height: 30px;
    color: inherit; /* Hérite de la couleur du parent .feature-icon */
    stroke: currentColor; /* Pour les icônes avec des traits */
}

.feature-item h3 {
    font-size: 1.3rem; /* 21px */
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive (ajustement) --- */
/* Pas besoin de @media complexe grâce à "auto-fit", 
  mais on ajuste les titres sur mobile.
*/
@media (max-width: 768px) {
    h2 {
        font-size: 2.1rem; /* Titre de section plus petit sur mobile */
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-section {
        padding: 60px 5%; /* Moins de padding sur mobile */
    }
}

/* ======================= */
/* SECTION TÉMOIGNAGE    */
/* ======================= */
.testimonial-section {
    padding: 80px 8%;
    background-color: #ffffff; /* Fond blanc pour contraster avec la section grise d'avant */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Colonne de texte plus large (2/3) que les stats (1/3) */
    gap: 50px;
    align-items: flex-start; /* Aligne les éléments en haut de leur colonne */
}

.testimonial-content h2 {
    font-size: 2.2rem; /* Titre légèrement plus petit que le H2 principal */
    font-weight: 700;
    text-align: left; /* Aligné à gauche, pas centré */
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonial-content .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* --- La citation (le "sex appeal" social) --- */
.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: #E6007A; /* On réutilise le bleu de la marque */
    border-left: 4px solid #E6007A;
    padding-left: 25px;
    margin: 30px 0;
}

.testimonial-content blockquote footer {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: #444;
    margin-top: 10px;
    display: block;
}

/* --- Boîte de validation (contexte) --- */
.validation-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* --- Colonne des Stats --- */
.testimonial-stats {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07); /* Ombre pro */
    position: sticky; /* L'encart "colle" au scroll (sur desktop) */
    top: 40px;
}

.testimonial-stats h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 10px;
}

.stat-value {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    color: #E6007A; /* Bleu impactant */
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    display: block;
}

/* --- CTA de fin de section --- */
.testimonial-cta {
    text-align: center;
    margin-top: 70px;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.testimonial-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.testimonial-cta p {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Responsive pour Témoignage --- */
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr; /* 1 seule colonne */
        gap: 40px;
    }

    .testimonial-stats {
        position: static; /* Annule l'effet "sticky" */
        order: -1; /* Les stats remontent AVANT le texte sur mobile (très efficace) */
    }

    .testimonial-content h2 {
        font-size: 1.8rem;
    }

    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
}

/* ======================= */
/* SECTION BÉNÉFICES    */
/* ======================= */
.benefits-section {
    padding: 80px 8%;
    background-color: #FFF9E6; /* Fond gris pour alterner avec le blanc */
}

.benefits-grid {
    display: grid;
    /* Crée 3 colonnes sur desktop, 2 sur tablette, 1 sur mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee; /* Bordure subtile */
    /* Pas d'ombre pour un look plus "léger" que la première feature list */
display: flex;         /* <-- AJOUTER */
    flex-direction: column; /* <-- AJOUTER */}

.benefit-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 15px;
align-self: center; /* <-- AJOUTER (centre l'icône dans le conteneur flex) */}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin: 60px auto 25px auto;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
}

.benefits-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.benefits-cta p {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* ======================= */
/* SECTION PROCESSUS    */
/* ======================= */
.process-section {
    padding: 80px 8%;
    background-color: #ffffff; /* Fond blanc */
}

.process-timeline {
    position: relative;
    max-width: 700px; /* La timeline n'a pas besoin d'être trop large */
    margin: 50px auto 0 auto; /* Centre la timeline */
}

/* La ligne verticale de la timeline */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px; /* Commence au centre du premier cercle */
    bottom: 20px; /* Finit au centre du dernier cercle */
    left: 24px; /* Centré sur le cercle de 50px */
    width: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start; /* Aligne le numéro avec le haut du texte */
    position: relative; /* Pour le z-index */
    z-index: 2;
    margin-bottom: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    flex-shrink: 0; /* Empêche le cercle de se déformer */
    width: 50px;
    height: 50px;
    background-color: #E6007A; /* Bleu de la marque */
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 25px;
    border: 4px solid #ffffff; /* Sépare le cercle de la ligne */
}

.process-step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-top: 5px; /* Aligne le titre avec le centre du cercle */
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive pour la timeline --- */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px; /* Ajuste la ligne pour le cercle plus petit */
    }

    .process-step-number {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .process-step-content h3 {
        font-size: 1.2rem;
        margin-top: 0;
    }
}

/* ======================= */
/* SECTION CTA FINAL    */
/* ======================= */
.cta-section {
    padding: 80px 8%;
    /* Un fond bleu "marque" pour un appel à l'action final fort */
    background-color: #E6007A; 
    color: #ffffff; /* Texte blanc */
    text-align: center;
}

.cta-content {
    max-width: 650px; /* Limite la largeur du contenu */
    margin: 0 auto; /* Centre le bloc */
}

/* On doit surcharger les couleurs des titres pour cette section */
.cta-section h2 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cta-section .section-subtitle {
    color: #f0f0f0; /* Un blanc légèrement cassé pour le sous-titre */
    margin-bottom: 30px;
}

/* On doit s'assurer que le formulaire est bien centré */
.cta-section .hero-form {
    margin: 0 auto; /* Centre le formulaire */
    max-width: 500px;
}

/* On doit ajuster le style du bouton pour qu'il ressorte sur le fond bleu */
.cta-section .hero-form button {
    background-color: #ffffff; /* Bouton blanc */
    color: #E6007A; /* Texte en bleu */
    font-weight: 700;
}

/* Effet au survol spécifique pour ce bouton */
.cta-section .hero-form button:hover {
    background-color: #f5f5f5;
    color: #B2005C;
    transform: translateY(-2px);
}

/* --- Responsive pour CTA --- */
@media (max-width: 768px) {
    /* Le formulaire est déjà en colonne grâce aux styles du Hero,
       nous n'avons presque rien à faire. */
    .cta-section .hero-form {
        width: 100%;
    }
}

/* ======================= */
/* HEADER          */
/* ======================= */
.site-header {
    position: sticky; /* "Colle" en haut au scroll */
    top: 0;
    width: 100%;
    z-index: 1000; /* Au-dessus de tout le reste */
    background-color: transparent; /* DEFAUT: transparent */
    backdrop-filter: none;          /* DEFAUT: aucun flou */
    box-shadow: none;               /* DEFAUT: aucune ombre */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    padding: 18px 8%;
}
/* Style du header LORSQU'ON SCROLLE */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* Devient semi-transparent blanc */
    backdrop-filter: blur(8px);                  /* Ajoute le flou "verre dépoli" */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);  /* Ajoute l'ombre */
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    color: white;
}

.site-header.scrolled .logo {
    color: #222;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
        text-decoration: none;
    display: flex;
    align-items: center; /* Centre verticalement */
    gap: 12px; /* Espace entre l'image et le texte */
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
}

.site-header .main-nav a {
    color: white;
}

.site-header.scrolled .main-nav a {
    color: #444;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #E6007A; /* Bleu de la marque */
}

/* Bouton CTA dans la nav */
.nav-cta-button {
    background-color: #E6007A;
    color: #ffffff !important; /* Force la couleur blanche */
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-cta-button:hover {
    background-color: #B2005C;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- Menu Mobile (Checkbox Hack) --- */
.menu-toggle,
.menu-hamburger {
    display: none; /* Caché sur desktop */
}


/* ======================= */
/* FOOTER          */
/* ======================= */
.site-footer-main {
    background-color: #222; /* Fond sombre pro */
    color: #ccc;
    padding: 60px 8% 30px 8%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Pour mobile */
    gap: 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center; /* Centre verticalement */
    gap: 12px; /* Espace entre l'image et le texte */
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #444;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #aaa;
    flex-wrap: wrap; /* Pour mobile */
    gap: 15px;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}


/* --- Responsive pour Header & Footer --- */
@media (max-width: 768px) {

    /* --- Header Mobile --- */
    .site-header {
        padding: 15px 5%;
    }

    .main-nav {
        display: block;
        position: absolute;
        top: 100%; /* Se place juste sous le header */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        
        /* C'est ici que le "hack" opère */
        max-height: 0; /* Caché par défaut */
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .main-nav ul {
        flex-direction: column; /* Menu en colonne */
        padding: 10px 0 20px 0;
        align-items: center;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .nav-cta-button {
        padding: 12px 25px;
    }

    .site-header .menu-hamburger span {
    background-color: white;
}

.site-header.scrolled .menu-hamburger span {
    background-color: black;
}

    /* Affiche le hamburger */
    .menu-hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 25px;
        position: relative;
    }
    .menu-hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        left: 0;
        transition: all 0.3s ease-in-out;
    }
    
    .menu-hamburger span:nth-child(1) { top: 0px; }
    .menu-hamburger span:nth-child(2) { top: 10px; }
    .menu-hamburger span:nth-child(3) { top: 20px; }

    /* Checkbox cachée */
    .menu-toggle {
        display: none;
    }

    /* Quand la checkbox est cochée... */
    .menu-toggle:checked ~ .main-nav {
        max-height: 400px; /* ... on affiche le menu */
    }

    /* ... et on anime le hamburger en "X" */
    .menu-toggle:checked ~ .menu-hamburger span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }
    .menu-toggle:checked ~ .menu-hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .menu-hamburger span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }


    /* --- Footer Mobile --- */
    .footer-top, .footer-bottom {
        flex-direction: column; /* Tout en colonne */
        text-align: center;
        align-items: center;
    }

    .footer-social {
        margin-top: 15px;
    }

    .footer-nav {
        margin-top: 10px;
    }
    .footer-nav a {
        margin: 0 10px;
    }
}

/* --- Styles pour le logo SVG --- */
.logo img, .footer-logo img {
    height: 40px; /* Taille par défaut du logo */
    width: auto;
}

@media (max-width: 768px) {
    .logo img, .footer-logo img {
        height: 35px; /* Légèrement plus petit sur mobile */
    }
}

/* --- Style Icône LinkedIn Footer --- */
.footer-social a svg {
    color: #ccc; /* Couleur de base de l'icône */
    transition: color 0.3s ease;
}

.footer-social a:hover svg {
    color: #ffffff; /* Couleur au survol */
}

/* ======================= */
/* STYLES MESSAGES FORMULAIRE  */
/* ======================= */

.form-success-message,
.form-error-message {
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

/* --- Message de Succès --- */
.form-success-message {
    background-color: #f0fff8; /* Fond vert très pâle */
    border: 1px solid #a8e3c7;
}
.form-success-message h3 {
    color: #008a4f; /* Vert foncé */
    margin-bottom: 10px;
}
.form-success-message p {
    color: #333;
}

/* --- Message d'Erreur --- */
.form-error-message {
    background-color: #fff0f0; /* Fond rouge très pâle */
    border: 1px solid #e3a8a8;
}
.form-error-message p {
    color: #a00; /* Rouge foncé */
}

/* --- Styles spécifiques pour le Hero (texte blanc) --- */
.hero-section .form-success-message {
    background-color: rgba(255, 255, 255, 0.1); /* Fond blanc transparent */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section .form-success-message h3,
.hero-section .form-success-message p {
    color: #ffffff;
}

.hero-section .form-error-message {
    background-color: rgba(255, 200, 200, 0.2); /* Fond rouge transparent */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section .form-error-message p {
    color: #ffffff;
    font-weight: 600;
}