/* Titre principal */
article {
    max-width: 800px;
    margin: 0 auto 20px;
}

section {
    justify-content: center;
    align-items: center;
    max-width: 800px;
    background: #fff;
    padding: 15px;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

h1 {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Date */
p strong {
    color: var(--color-text);
}

.privacy-date {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1.8rem;
}

/* Sous-titres */
h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 0.5rem;
    line-height: 1.3;
    color: #222;
}

/* Paragraphes */
p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Listes */
ul {
    margin: 0 0 1.2rem 1.2rem;
    padding: 0;
    list-style-type: disc;
}

ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

/* Liens */
a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    opacity: .8;
}

/* Footer */
.privacy-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-primary-light);
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-muted);
}

/* ---------------------------------------------- */
/* ----------- TABLETTE (>= 600px) -------------- */
/* ---------------------------------------------- */

@media (min-width: 600px) {
    h1 {
        font-size: 1.9rem;
        text-align: center;
    }

    .privacy-date {
        text-align: center;
    }

    h2 {
        font-size: 1.4rem;
    }

    p,
    ul li {
        font-size: 1.05rem;
    }
}

/* ---------------------------------------------- */
/* ---------------- DESKTOP (>= 900px) ---------- */
/* ---------------------------------------------- */

@media (min-width: 900px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    p,
    ul li {
        font-size: 1.1rem;
        line-height: 1.85;
    }
}