:root {
    --bg: #ffffff;
    --text: #222;
    --muted: #666;
    --primary: #0a1a40;
    /* Bleu nuit */
    --radius: 10px;
    --container: 1100px;
    --gap: 1rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    line-height: 1.4;
    color: var(--text);
    background: var(--bg);
    margin: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem;
}

/* Header général */
header {
    background-color: #0a1a40;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    /* logo - menu - bouton */
    align-items: center;
    /* centre verticalement */
}

/* Logo */
header .logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Menu */
header .menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    /* occupe l’espace entre logo et bouton */
    justify-content: center;
    /* centre les liens */
}

header .menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

header .menu a:hover {
    transform: translateY(-2px);
    color: #cccccc;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 115%;
    left: 0;
    background-color: #0a1a40;
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #133068;
}

/* Affichage du menu au survol */
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

/* Header général */
header {
    background-color: #0a1a40;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
header .logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Menu */
header .menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

header .menu a:hover {
    transform: translateY(-2px);
    color: #cccccc;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 115%;
    left: 0;
    background-color: #0a1a40;
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #133068;
}

/* Affichage du menu au survol */
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

/* Bouton téléphone */
header .contact-btn a {
    background-color: #fff;
    color: #0a1a40;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

header .contact-btn a:hover {
    transform: translateY(-2px);
    background-color: #cccccc;
}

/* Positionnement du bouton */
header .contact-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Version desktop */
@media (min-width: 769px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .contact-btn {
        position: static;
        margin-left: auto;
        /* pousse à droite */
    }
}


/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 115%;
    left: 0;
    background-color: #0a1a40;
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #133068;
}

/* Affichage du menu au survol */
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}



/* Responsive : menu en colonne sur mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header .menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
    }
}


.brand {
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.1rem;
}

.main-nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--muted);
}

.site-header {
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}

.phone {
    text-decoration: none;
    background: linear-gradient(90deg, var(--primary), #001030);
    color: #fff;
    padding: .5rem .8rem;
    border-radius: 8px;
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.hero h1 {
    margin: 0 0 .5rem;
    font-size: 1.6rem;
    color: var(--primary);
}

.lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.cta-row {
    display: flex;
    gap: .5rem;
}

.btn {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #fff;
    transition: transform .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    border: 0;
}

.services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.form {
    max-width: 700px;
}

.form label {
    display: block;
    margin-bottom: .75rem;
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea,
.form select,
.form input[type=date] {
    width: 100%;
    padding: .6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form button {
    margin-top: .5rem;
}

.contact-info {
    margin-top: 1.5rem;
}


.small {
    font-size: .85rem;
    color: var(--muted);
    padding: .6rem 0;
}

@media (max-width: 700px) {
    .header-inner {
        flex-direction: row;
        gap: .5rem;
    }

    .main-nav {
        display: none;
    }

    .hero h1 {
        font-size: 1.2rem;
    }
}

/* --- Bandeau cookies --- */
/* === Pop-up cookie bas-droite === */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #0a1a40;
    /* bleu nuit */
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-size: 0.9rem;
    z-index: 10000;
    display: block;
    /* s'affiche par défaut */
}

.cookie-popup p {
    margin: 0 0 0.5rem 0;
}

.cookie-popup button {
    display: inline-block;
    background: #fff;
    color: #0a1a40;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-popup button:hover {
    background: #eee;
}

.contact-section {
    padding: 3rem 1rem;
    background: #f7fbff;
}

.contact-section h2 {
    text-align: center;
    color: #0a1a40;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 500;
    color: #0a1a40;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0a1a40;
    box-shadow: 0 0 5px rgba(10, 26, 64, 0.3);
}

.contact-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #0a1a40;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #001030;
    transform: translateY(-2px);
}

.form-status {
    font-size: 0.9rem;
    color: #333;
    margin-top: 0.5rem;
    min-height: 1.2em;
    /* garde l'espace pour le texte */
}

/* Responsive */
@media (max-width: 700px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* Force le footer à rester collé en bas si peu de contenu */
html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.site-footer {
    background: #0a1a40;
    /* bleu nuit */
    color: #fff;
    padding: 2rem 1rem;
    margin-top: auto;
    /* pousse le footer en bas */
}

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

.footer-container h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-container p,
.footer-container ul {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact .socials a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}

.footer-contact .socials a:hover {
    color: #1da1f2;
    /* bleu clair au hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* Override couleur des liens uniquement dans le footer */
.footer a,
.site-footer a,
.footer-contact a,
.site-footer .footer-contact a,
.footer a:link,
.footer a:visited {
    color: #bdbdbd;
    /* gris clair */
    text-decoration: none;
    transition: color .18s ease;
}

/* hover / focus / active */
.footer a:hover,
.site-footer a:hover,
.footer-contact a:hover,
.footer a:focus,
.footer a:active {
    color: #ffffff;
    /* blanc au survol */
    text-decoration: underline;
}

/* Section services */
.services {
    text-align: center;
    padding: 3rem 1rem;
}

.services h2 {
    font-size: 2rem;
    color: #0a1a40;
    margin-bottom: 2rem;
}

/* Grille de services avec Flexbox */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    /* permet plusieurs lignes */
    gap: 2rem;
    /* espace entre les blocs */
    justify-content: center;
    /* centre toutes les lignes incomplètes */
    max-width: 1200px;
    margin: 0 auto;
}

/* Bloc de service */
.service-card {
    flex: 1 1 30%;
    /* chaque bloc prend environ 30% de la largeur */
    max-width: 350px;
    /* limite la taille des blocs */
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0a1a40;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #333;
    font-size: 0.95rem;
}

/* Responsive pour tablettes et mobiles */
@media screen and (max-width: 900px) {
    .service-card {
        flex: 1 1 45%;
        /* 2 par ligne */
    }
}

@media screen and (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
        /* 1 par ligne */
    }
}


.contact-section {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: left;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0a1a40;
}

/* Formulaire moderne */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Champs stylés */
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #0a1a40;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1da1f2;
    box-shadow: 0 0 8px rgba(29, 161, 242, 0.3);
    outline: none;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #0a1a40;
}

.checkbox-container input {
    margin-top: 3px;
    /* pour aligner avec le texte */
}

/* Bouton stylé */
.contact-form button {
    background-color: #0a1a40;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #133068;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
    .contact-section {
        padding: 1rem;
    }
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #0a1a40;
    /* bordure bleu nuit */
    border-radius: 8px;
    /* coins arrondis */
    font-size: 1rem;
    background-color: #fff;
    /* fond blanc */
    color: #0a1a40;
    appearance: none;
    /* enlève la flèche par défaut */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1a40' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
    transition: all 0.3s ease;
}

.contact-form select:focus {
    border-color: #1da1f2;
    /* bleu clair au focus */
    box-shadow: 0 0 8px rgba(29, 161, 242, 0.3);
    outline: none;
}

/* Option hover et text */
.contact-form select option {
    padding: 10px;
}

/* Formulaire carré adaptable */
#quoteForm {
    width: 500px;
    /* largeur fixe */
    min-height: 500px;
    /* minimum pour garder forme carré */
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #0a1a40;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Labels et champs */
#quoteForm label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: var(--primary);
}

/* Inputs et select */
#quoteForm input,
#quoteForm select {
    padding: 10px;
    font-size: 0.95rem;
    border: 1px solid #0a1a40;
    border-radius: 8px;
}

/* Champ description flexible */
#quoteForm textarea {
    padding: 10px;
    font-size: 0.95rem;
    border: 1px solid #0a1a40;
    border-radius: 8px;
    resize: vertical;
    /* permet de redimensionner verticalement */
    min-height: 80px;
    /* hauteur minimale */
    max-height: 200px;
    /* hauteur maximale */
    overflow-y: auto;
    /* scroll si texte dépasse */
}

/* Bouton */
#quoteForm button {
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

#quoteForm button:hover {
    background-color: #133068;
    transform: translateY(-1px);
}

/* Message de statut */
#quoteStatus {
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    min-height: 1.2em;
}

/* Responsive */
@media (max-width: 600px) {
    #quoteForm {
        width: 90%;
        min-height: auto;
        /* hauteur automatique sur mobile */
        padding: 1.5rem;
    }

    #quoteForm textarea {
        max-height: 150px;
    }
}

/* Grille des services */
.services .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Toujours 3 colonnes sur PC */
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive tablette */
@media (max-width: 900px) {
    .services .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    .services .grid {
        grid-template-columns: 1fr;
    }
}


/* Carte service classique et image */
.service-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour les cartes avec image */
.service-card img {
    width: 100%;
    height: auto;
    /* garde le ratio original */
    max-height: 400px;
    /* limite la hauteur pour éviter qu’elles prennent tout l’écran */
    object-fit: cover;
    /* recadrage si max-height atteint */
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
}

/* -------- Responsive Footer -------- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* une seule colonne */
        text-align: center;
        /* tout centré */
    }

    .footer-contact .socials {
        justify-content: center;
    }
}

/* Ajustement titres serrurerie */
.services-grid .service-card h3 {
    font-size: 1.2rem;
    /* plus petit que plomberie */
    margin-bottom: 0.5rem;
}

/* Règle générale (pour la majorité des images) */
.services-grid .service-card img {
    width: 100%;
    height: 200px;
    /* bloc toujours identique */
    object-fit: cover;
    /* image recadrée joliment */
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

/* Exception pour une image précise */
.services-grid .service-card img.img-contain {
    object-fit: contain;
    /* on montre toute l’image */
    background-color: #fff;
    /* évite les bandes vides */
}

/* --- Section intro / accueil --- */
.intro {
    text-align: center;
    padding: 3rem 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1000px;
}

.intro h1 {
    font-size: 2.5rem;
    color: #0a1a40;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* --- Section zones d’intervention --- */
.zones {
    padding: 2rem 1rem;
    background: #ffffff;
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 12px;
}

.zones h2 {
    font-size: 2rem;
    color: #0a1a40;
    margin-bottom: 1rem;
}

.zones p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* --- Section CTA (appel à l'action) --- */
.cta {
    text-align: center;
    padding: 3rem 1rem;
    background: #0a1a40;
    color: #fff;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1000px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Boutons devis et RDV */
.cta-button {
    display: inline-block;
    background-color: #ff7f50;
    /* corail */
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    margin: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ff6333;
    transform: translateY(-2px);
}

/* Section Pourquoi nous choisir */
.why {
    background-color: #f0f4ff;
    /* léger bleu clair */
    padding: 3rem 1rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1000px;
    text-align: center;
}

.why h2 {
    font-size: 2rem;
    color: #0a1a40;
    margin-bottom: 2rem;
}

.why ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.why ul li {
    background-color: #fff;
    border: 1px solid #d0d7e5;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    flex: 1 1 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Ajouter éventuellement des icônes avant chaque élément */
.why ul li::before {
    content: "✔️";
    /* tu peux mettre une autre icône */
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: #ff7f50;
    /* corail */
}

/* Section engagements */
.engagements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.engagement-card {
    background-color: #f0f4ff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    flex: 1 1 250px;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engagement-card span {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.engagement-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Boutons */
.cta-buttons {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-buttons .btn {
    display: inline-block;
    background-color: #0a1a40;
    color: #fff;
    padding: 0.8rem 1.8rem;
    margin: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-buttons .btn:hover {
    background-color: #1a2b60;
    transform: translateY(-2px);
}

/* Texte de l'introduction */
.intro-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f5f7ff;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.intro-section h1 {
    font-size: 2.4rem;
    color: #0a1a40;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Texte de la mission */
.mission-section {
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
}

.mission-section h2 {
    font-size: 2rem;
    color: #0a1a40;
    margin-bottom: 0.8rem;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}