/* FOOTER */
footer {
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  text-align: center;
}

/* MODIF H2 dan H3 */
/* Reset counter untuk h2 dan h3 */
.markdown-section {
  counter-reset: h2-counter;
}

.markdown-section h2 {
  counter-increment: h2-counter;
  counter-reset: h3-counter;
  /* reset h3 setiap h2 baru */
  position: relative;
  padding-left: 2em;
  font-weight: bold;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 6px;
  margin-top: 2em;
}

.markdown-section h2::before {
  content: counter(h2-counter) ". ";
  position: absolute;
  left: 0;
  color: #555;
  font-weight: bold;
}

.markdown-section h3 {
  counter-increment: h3-counter;
  position: relative;
  padding-left: 1em;
  font-weight: bold;
  margin-top: 1em;
}

.markdown-section h3::before {
  content: counter(h2-counter) "." counter(h3-counter) " ";
}
