/* =========================
   RESET MINIMAL
========================= */
.legal,
.container,
.cgv {
    box-sizing: border-box;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.7;
    font-size: 16px;
    color: #222;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin-top: 130px;
}

/* =========================
   TITRES
========================= */
.legal h1,
.container h1,
.cgv h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal h2,
.container h2,
.cgv h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal h3,
.container h3,
.cgv h3 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* =========================
   TEXTE
========================= */
.legal p,
.container p,
.cgv p {
    margin-bottom: 12px;
}

/* =========================
   LISTES
========================= */
.legal ul,
.container ul,
.cgv ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal li,
.container li,
.cgv li {
    margin-bottom: 6px;
}

/* =========================
   LIENS
========================= */
.legal a,
.container a,
.cgv a {
    color: inherit;
    text-decoration: underline;
}

.legal a:hover,
.container a:hover,
.cgv a:hover {
    opacity: 0.7;
}

/* =========================
   SÉPARATEURS
========================= */
.legal hr,
.container hr,
.cgv hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* =========================
   BLOCS IMPORTANTS
========================= */
.legal strong,
.container strong,
.cgv strong {
    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
    .legal,
    .container,
    .cgv {
        margin: 20px auto;
        font-size: 15px;
    }

    .legal h1,
    .container h1,
    .cgv h1 {
        font-size: 24px;
    }

    .legal h2,
    .container h2,
    .cgv h2 {
        font-size: 18px;
    }
}