* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: #1e2a3e;
}

/* En-tête */
.header {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    background-color: rgba(255,255,255,0.95);
}

.logo h1 {
    color: #006a4e;
    font-size: 24px;
}

.logo p {
    font-size: 12px;
    color: gray;
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #1e2a3e;
    font-weight: bold;
}

.menu a:hover {
    color: #006a4e;
}

.btn-vert {
    border: 2px solid #006a4e;
    padding: 8px 15px;
    border-radius: 30px;
    color: #006a4e !important;
}

.btn-vert-fonce {
    background-color: #006a4e;
    padding: 8px 18px;
    border-radius: 30px;
    color: white !important;
}

.btn-vert-fonce:hover {
    background-color: #00523d;
}

/* Bannière */
.banniere {
    background: linear-gradient(135deg, #f0faf5, white);
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.texte-banniere {
    flex: 1;
}

.badge {
    background-color: rgba(0,106,78,0.1);
    color: #006a4e;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.texte-banniere h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #001f14;
}

.texte-banniere p {
    font-size: 18px;
    color: gray;
    margin-bottom: 25px;
}

.boutons a {
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}

.btn-blanc {
    border: 2px solid #006a4e;
    padding: 8px 20px;
    border-radius: 30px;
    color: #006a4e;
    font-weight: bold;
}

.image-banniere {
    flex: 1;
    text-align: center;
}

.carte-illustration {
    background-color: #eef2f5;
    padding: 40px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: bold;
    color: #006a4e;
}

/* Services */
.services {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.sous-titre {
    color: gray;
    margin-bottom: 40px;
}

.grille-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.carte-service {
    background-color: white;
    padding: 30px 20px;
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid #f0f0f0;
}

.carte-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.icone {
    font-size: 40px;
    margin-bottom: 15px;
}

.carte-service h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.carte-service p {
    color: gray;
}

/* Application mobile */
.app-mobile {
    background-color: #006a4e;
    color: white;
    margin: 40px auto;
    padding: 50px 30px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

.texte-app h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.boutons-app {
    display: flex;
    gap: 15px;
}

.btn-app {
    background-color: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
}

.btn-app:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Chiffres */
.chiffres {
    background-color: #f5f7fa;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 25px;
}

.stat h3 {
    font-size: 38px;
    color: #006a4e;
}

.stat p {
    font-weight: bold;
    color: gray;
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.infos-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    text-align: left;
}

.coordonnees {
    flex: 1;
    background-color: #eef2f5;
    padding: 30px;
    border-radius: 20px;
}

.coordonnees p {
    margin: 15px 0;
}

.formulaire {
    flex: 1.2;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #ddd;
}

.formulaire input, .formulaire textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-family: Arial, sans-serif;
}

.formulaire button {
    background-color: #006a4e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.formulaire button:hover {
    background-color: #00523d;
}

/* Pied de page */
.footer {
    background-color: #0a2a20;
    color: #d4e6df;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.liens-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

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

.liens-footer p {
    margin: 8px 0;
}

.liens-footer a {
    color: #bdd9cf;
    text-decoration: none;
}

.liens-footer a:hover {
    color: #f9b233;
}

.copyright {
    text-align: center;
    border-top: 1px solid #2e5546;
    padding-top: 25px;
    margin-top: 30px;
    font-size: 13px;
}

/* Pour les petits écrans */
@media (max-width: 800px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .menu a {
        display: inline-block;
        margin: 5px;
    }
    
    .banniere {
        flex-direction: column;
        text-align: center;
    }
    
    .texte-banniere h2 {
        font-size: 28px;
    }
    
    .app-mobile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .liens-footer {
        flex-direction: column;
        text-align: center;
    }
}