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

/* BODY */
body {
    background: linear-gradient(180deg, #12642e 0%, #0c4d22 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
    min-height: 100vh;
    padding: 16px;
}

/* CONTAINER GLOBAL (tout dedans) */
.container {
    background: #fff;
    max-width: 580px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    overflow: hidden;
}

/* INNER (padding interne) */
.container > * {
    padding-left: 24px;
    padding-right: 24px;
}

/* HEADER */
.header {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 10px;
}

.logo {
    width: 100px;
}

/* CONTENU */
main {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* TITRES */
h1 {
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #12642e;
}

h2 {
    font-size: 18px;
    margin: 26px 0 12px;
    color: #12642e;
}

/* TEXTE */
.intro {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #222;
}

/* URGENCE */
.cta-urgent {
    background: #f1f8e9;
    border: 1px solid #dcedc8;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #33691e;
}

/* CONTACT */
.contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.btn,
.btn-secondary {
    display: block;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

/* BTN PRINCIPAL */
.btn {
    background: #a6c82f;
    color: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn:hover {
    background: #94b328;
    transform: translateY(-2px);
}

/* BTN SECOND */
.btn-secondary {
    background: #12642e;
    color: #fff;
}

.btn-secondary:hover {
    background: #0f5527;
    transform: translateY(-2px);
}

/* SERVICES */
.services ul {
    list-style: none;
}

.services li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 14px;
}

.services li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #a6c82f;
    font-size: 12px;
}

/* ZONE */
.zone p {
    font-size: 14px;
    line-height: 1.5;
}

/* SAP */
.sap {
    margin-top: 22px;
    text-align: center;
}

.sap img {
    width: 220px;
    margin-bottom: 10px;
}

.sap p {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

/* FAQ */
.faq {
    margin-top: 22px;
    text-align: left;
}

.faq p {
    font-size: 13.5px;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* FOOTER (dans le bloc blanc) */
.footer {
    text-align: center;
    padding: 16px 24px 22px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 480px) {

    .container {
        border-radius: 16px;
    }

    .header {
        padding-top: 18px;
    }

    .logo {
        width: 90px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    .btn,
    .btn-secondary {
        font-size: 14px;
        padding: 13px;
    }
}