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

.guest-prestataires-page {
    max-width: 900px;
    margin: 32px auto;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(39, 174, 96, 0.08),
        0 1.5px 6px rgba(0, 0, 0, 0.04);
}

section {
    margin-bottom: 40px;
}

h1,
h2 {
    color: #27ae60;
    margin-top: 0;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

strong {
    color: #27ae60;
}

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

ul,
ol {
    padding-left: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}

li {
    margin-bottom: 7px;
    line-height: 1.6;
}

.intro {
    background-color: #27ae60;
    border-radius: 12px;
    padding: 28px 22px 18px 22px;
    color: #fff;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(39, 174, 96, 0.07);
}
.intro h1,
.intro strong {
    color: #fff;
}
.intro p {
    color: #f4f4f4;
    font-size: 1.08rem;
}

section:not(.intro) {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 22px 18px 16px 18px;
    box-shadow: 0 1px 6px rgba(39, 174, 96, 0.04);
}

.process ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}
.process ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
}
.process ol li:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background: #27ae60;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(39, 174, 96, 0.13);
}

.contact {
    background: #27ae60;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 28px 18px 22px 18px;
    box-shadow: 0 2px 12px rgba(39, 174, 96, 0.09);
}
.contact a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .guest-prestataires-page {
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
    }
    section,
    .intro,
    .contact {
        padding: 16px 8px 12px 8px;
        border-radius: 0;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.05rem;
    }
    ul,
    ol {
        padding-left: 14px;
    }
}

::-webkit-scrollbar-thumb {
    background: #27ae60;
    border-radius: 8px;
}
::-webkit-scrollbar {
    width: 8px;
    background: #f4f4f4;
}
