body {
    font-family: "Segoe UI", "Roboto", Arial, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 16px 48px 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(39, 174, 96, 0.07);
    border-radius: 12px;
}

section {
    margin-bottom: 48px;
}

h1,
h2 {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.2rem;
    margin-top: 0;
}

h2 {
    font-size: 1.4rem;
}

strong {
    color: #222;
    font-weight: 700;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 strong {
    color: #27ae60;
}

ul {
    padding-left: 22px;
    margin-bottom: 18px;
}

li {
    margin-bottom: 8px;
    position: relative;
}

li::marker {
    color: #27ae60;
}

a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover,
a:focus {
    color: #219150;
    text-decoration: underline;
}

.cta-buttons {
    margin: 32px 0 16px 0;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 24px;
    border: none;
    background: #27ae60;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
    text-decoration: none;
}

.btn-secondary {
    background: #fff;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #27ae60;
    color: #fff;
}

.note {
    font-size: 0.98rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
}

.documents,
.administratif {
    background: #f7faf8;
    border-left: 4px solid #27ae60;
    padding: 24px 20px 16px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact {
    text-align: center;
    background: #fff;
    padding: 24px 0 0 0;
}

.contact strong {
    color: #27ae60;
}

@media (max-width: 700px) {
    main {
        padding: 16px 4vw 32px 4vw;
        box-shadow: none;
        border-radius: 0;
    }
    h1 {
        font-size: 1.4rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    .btn,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.98rem;
    }
    .documents,
    .administratif {
        padding: 16px 8px 10px 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.1rem;
    }
    .intro,
    .contact {
        padding-left: 0;
        padding-right: 0;
    }
}
