* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #000;
  }
  h1 {
    margin-bottom: 1rem;
  }
  p {
    margin-bottom: 15px;
  }
  a {
    color: #0066cc;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  /* Ordered list numbering */
  ol.terms {
    counter-reset: section;
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
  }
  ol.terms > li {
    counter-increment: section;
    margin-bottom: 1rem;
  }
  ol.terms > li::before {
    content: counter(section) ". ";
    font-weight: bold;
  }
  ol.terms ol {
    counter-reset: subsection;
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  ol.terms ol > li {
    counter-increment: subsection;
    margin-bottom: 0.75rem;
  }
  ol.terms ol > li::before {
    content: counter(section) "." counter(subsection) " ";
    font-weight: bold;
  }

  ol.terms ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
  }
  ol.terms ul > li {
    margin-bottom: 0.5rem;
  }

  .terms .user-conduct > ul {
    list-style: none;
    counter-reset: alpha;
    padding-left: 2rem;
  }
  
  .terms .user-conduct > ul > li {
    counter-increment: alpha;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .terms .user-conduct > ul > li::before {
    content: "(" counter(alpha, lower-alpha) ") ";
    position: absolute;
    left: 0;
    font-weight: normal;
  }