/* Carte CGU */
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);
}
/* Titre principal */
h1 {
    font-size: 1.6rem; /* mobile-friendly */
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Date de mise à jour */
.cgu-date {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1.8rem;
}

/* Titres de sections */
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;
}

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

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

/* Footer */
.cgu-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 (medium size) ----------- */
/* ---------------------------------------------- */

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

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

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1.05rem;
    }
}

/* ---------------------------------------------- */
/* -------------- DESKTOP LARGE ----------------- */
/* ---------------------------------------------- */

@media (min-width: 900px) {
    .cgu-wrapper {
        padding-block: 2rem;
        display: flex;
        justify-content: center;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.55rem;
    }

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