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

body {
    font-family: Georgia, serif;
    color: #333;
    background: #fafafa;
    line-height: 1.75;
}

/* ── BANDEAU ── */
.bandeau {
    width: 100%;
    background-color: #fff;
}

.bandeau img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── PRÉSENTATION (photo à gauche, texte à droite) ── */
.presentation {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 30px;
}

.photo-bloc {
    flex-shrink: 0;
    width: 240px;
}

.photo-bloc img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.texte-bloc {
    flex: 1;
}

.texte-bloc h1 {
    font-size: 1.6rem;
    color: #1a2e45;
    margin-bottom: 20px;
    line-height: 1.3;
}

.texte-bloc p {
    margin-bottom: 14px;
    font-size: 1rem;
}

/* ── BOUTON ── */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background-color: #1a2e45;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #2c4a6e;
}

/* ── INTRO CONTACT ── */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 0 20px;
    font-style: italic;
    color: #555;
}

/* ── BLOCS PRESTATIONS ── */
.bloc-prestations {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.bloc-prestations.alt {
    background: #f0f4f8;
}

.bloc-prestations h2 {
    font-size: 1.3rem;
    color: #1a2e45;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #1a2e45;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.prestation {
    border-left: 3px solid #1a2e45;
    padding-left: 16px;
    margin-bottom: 28px;
}

.prestation h3 {
    font-size: 1rem;
    color: #1a2e45;
    margin-bottom: 6px;
}

.prestation p {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tarif {
    color: #2c4a6e;
    font-size: 0.95rem;
}

.decouverte {
    border-left-color: #27ae60;
}

.decouverte .tarif strong {
    color: #27ae60;
}

/* ── POURQUOI ME FAIRE CONFIANCE ── */
.confiance {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 30px;
    background: #1a2e45;
    color: white;
    border-radius: 6px;
}

.confiance h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.confiance ul {
    list-style: none;
    padding: 0;
}

.confiance ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.97rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.confiance ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #5dade2;
}

/* ── FOOTER ── */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
}

footer a {
    color: #5dade2;
}

.small {
    font-size: 0.8rem;
    margin-top: 8px;
}

/* ── RESPONSIVE (mobile) ── */
@media (max-width: 700px) {
    .presentation {
        flex-direction: column;
        align-items: center;
    }

    .photo-bloc {
        width: 180px;
    }

    .texte-bloc h1 {
        font-size: 1.3rem;
    }
}
