
    ol.custom-numbering {
      list-style-type: none; /* Remove default numbering */
      counter-reset: section; /* Initialize a counter */
    }
    ol.custom-numbering li {
      counter-increment: section; /* Increment counter for each <li> */
    }
    ol.custom-numbering li::before {
content: "§ " counter(section) " " /* Correct character reference */
    }
