@media (max-width: 700px) {
    .service-flex {
        flex-direction: column;
        gap: 18px;
    }
    .service-img {
        margin-left: 0;
        margin-top: 12px;
        max-width: 100%;
    }
}
/* --- Services --- */
.service-flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.service-exemples {
    flex: 1;
    margin-bottom: 0;
    padding-left: 18px;
    font-size: 1.08em;
}
.service-img {
    max-width: 220px;
    margin-left: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(200,111,192,0.07);
}
/* Palette rose pâle */
:root {
    --rose-pale: #f8e1ec;
    --rose-moyen: #e9b6d2;
    --rose-fonce: #d48ab2;
    --rose-vif: #c06fc0;
    --texte-fonce: #7c3e7c;
    --blanc: #fff;
}

/* --- Fond et base --- */
/* --- Présentation À propos --- */
.presentation-figure {
    text-align: center;
}
.presentation-img {
    max-width: 220px;
    width: 100%;
    margin-bottom: 18px;
}
.presentation-caption {
    font-size: 1.1em;
    color: var(--rose-fonce);
    margin-bottom: 12px;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('image/fond.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--texte-fonce);
    min-height: 100vh;
    background-color: var(--rose-pale);
}

/* --- Conteneur principal --- */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 24px;
    background: #fff; /* blanc pur */
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(200,111,192,0.10);
}

main {
    padding-bottom: 100px;
}

section {
    margin: 56px 0;
}

.hero .container {
    background: #fff; /* blanc pur */
    text-align: center;
    padding: 70px 24px 50px 24px;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(200,111,192,0.12);
}

.hero h1 {
    font-size: 2.7em;
    color: var(--rose-vif);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(200,111,192,0.08);
}

.hero p {
    font-size: 1.35em;
    color: var(--rose-fonce);
    margin-bottom: 0;
    font-weight: 500;
}

#about h2, #services h2, #contact h2 {
    color: var(--rose-vif);
    font-size: 2.1em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#about p, #services ul, #contact ul {
    font-size: 1.13em;
    color: var(--texte-fonce);
    line-height: 1.7;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.services-list li {
    background: linear-gradient(120deg, var(--rose-pale) 70%, var(--rose-moyen) 100%);
    color: var(--rose-vif);
    padding: 16px 26px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(200,111,192,0.07);
    flex: 1 1 220px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.services-list li:hover {
    box-shadow: 0 6px 24px rgba(200,111,192,0.13);
    transform: translateY(-2px) scale(1.03);
}

/* --- Boutons CTA --- */
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 36px;
    background: linear-gradient(90deg, var(--rose-vif) 60%, var(--rose-moyen) 100%);
    color: var(--blanc);
    border-radius: 32px;
    font-weight: bold;
    font-size: 1.13em;
    text-decoration: none;
    box-shadow: 0 2px 14px rgba(200,111,192,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
}
.cta:hover, .cta:focus {
    background: linear-gradient(90deg, var(--rose-moyen) 60%, var(--rose-vif) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(200,111,192,0.18);
}

#contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#contact li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#contact a {
    color: inherit;
    text-decoration: underline;
    font-weight: normal;
    padding: 0;
    transition: none;
}
#contact a:hover {
    color: inherit;
}

/* --- Footer --- */
footer {
    text-align: center;
    background: rgba(241, 224, 241, 0.88);
    padding: 22px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 1em;
    color: var(--rose-vif);
    box-shadow: 0 -2px 12px rgba(200,111,192,0.05);
}

/* --- Header modernisé --- */
#header {
    width: 100%;
    background: #fff; /* blanc pur */
    box-shadow: 0 2px 12px rgba(200,111,192,0.08);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}

.header-logo {
    height: 54px;
    width: auto;
    margin-right: 18px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    text-decoration: none;
    color: var(--rose-vif);
    font-weight: 600;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
    padding: 6px 10px;
    border-radius: 6px;
}
.header-nav a:hover,
.header-nav a:focus {
    color: var(--rose-fonce);
    background: var(--rose-pale);
}

/* Responsive header */
@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 10px;
    }
    .header-logo {
        height: 40px;
        margin-bottom: 10px;
    }
    .header-nav ul {
        gap: 18px;
    }
    .container {
        padding: 24px 8px;
    }
    .hero .container {
        padding: 36px 8px 20px 8px;
    }
    .services-list {
        flex-direction: column;
        gap: 14px;
    }
    section {
        margin: 32px 0;
    }
    .hero h1 {
        font-size: 2em;
    }
    #about h2, #services h2, #contact h2 {
        font-size: 1.4em;
    }
}
