li {
  font-weight: bold;
}

ol {
  counter-reset: item; /* Inisialisasi counter */
}

ol li {
  counter-increment: item; /* Tambah counter setiap li */
  list-style: none; /* Hilangkan default bullet/number */
}

ol li::before {
  content: counter(item) ". "; /* Tampilkan nomor urut */
  font-weight: bold;
}
