body {
    counter-reset: section;
}

/* Réinitialisation du sous-compteur à chaque nouvelle section (h1) */
h2 {
    counter-reset: subsection;
}

/* Affichage et incrémentation des sections (1, 2, 3...) */
h2::before {
    counter-increment: section;
    content: counter(section) ". ";
}

/* Affichage et incrémentation des sous-sections (1.1, 1.2...) */
h3::before {
    counter-increment: subsection;
    content: counter(section) "." counter(subsection) " ";
}
