/***********************************************
  FEUILLE DE STYLE POUR LES PAGES (CGU,
  MENTIONS LÉGALES, ETC.) AVEC LA CLASSE "page"
***********************************************/

/* Corps principal de la page */
.page {
    /* Centrer le contenu et limiter la largeur */
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;

    /* Apparence du texte */
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;

    /* Couleur de fond (optionnelle) */
    background: #fff;
}

/* Titres principaux (h1) */
.page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

/* Titres de niveau 2 (h2) */
.page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 600;
    border-left: 4px solid #970fff; /* Petite barre colorée à gauche */
    padding-left: 0.75rem;
}

/* Titres de niveau 3 (h3) */
.page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

/* Paragraphes */
.page p {
    margin-bottom: 1rem;
}

/* Listes non ordonnées (ul) et listes ordonnées (ol) */
.page ul,
.page ol {
    margin: 1rem 0 1rem 2rem; /* indentation */
}

.page li {
    margin-bottom: 0.5rem;
}

/* Mises en évidence (italique, souligné, gras) */
.page em {
    color: #666;
    font-style: italic;
}

.page u {
    text-decoration: underline;
}

.page strong {
    font-weight: 700;
    color: #000;
}

/* Séparateur horizontal (hr) */
.page hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
}

/* Liens */
.page a {
    color: #1a73e8;
    text-decoration: none;
}

.page a:hover {
    text-decoration: underline;
}

/* Blockquotes (si vous utilisez des citations) */
.page blockquote {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-left: 4px solid #970fff;
    font-style: italic;
    color: #555;
}

/* Tables (si nécessaires) */
.page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.page th {
    text-align: left;
    padding: 0.75rem;
    background: #f2f2f2;
    border: 1px solid #ddd;
}

.page td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

/* Responsivité : Ajustements sur écrans plus petits */
@media (max-width: 600px) {
    .page {
        padding: 1rem;
        font-size: 15px;
    }

    .page h1 {
        font-size: 1.8rem;
    }

    .page h2 {
        font-size: 1.4rem;
    }

    .page h3 {
        font-size: 1.15rem;
    }
}