/* Start custom CSS for text-editor, class: .elementor-element-9dce703 *//* Reset the counter for each top-level list */
ol {
  list-style-type: none; /* Hide default numbers */
  counter-reset: item;   /* Initialize the counter variable */
}

/* Increment and display the counter for every list item */
ol li {
  display: block;
  position: relative;
}

ol li:before {
  content: counters(item, ".") " "; /* Combine parent and child counters with a dot */
  counter-increment: item;         /* Increment the counter */
  margin-right: 0.5em;              /* Add space before the text */
  font-weight: bold;                /* Optional: standard legal style */
}/* End custom CSS */