.numbered {
  counter-reset: section;
  list-style: none;
  line-height: 1.5;
  margin-top: 50px;
}

.numbered > li {
  counter-increment: section;
}

.numbered > li::before {
  content: counter(section) ". ";
}

.numbered > li > ol {
  counter-reset: subsection;
  list-style: none;
}

.numbered > li > ol > li {
  counter-increment: subsection;
}

.numbered > li > ol > li::before {
  content: counter(section) "." counter(subsection) " ";
}

.numbered li {
    margin: 10px 5px 10px 5px;
    color: #dfe2e8;
    font-size: 18px;
}

.sublist li {
    margin: 20px 5px 20px 5px;
}

ul {
    padding-left: 80px;
}

li a {
  font-size: 18px;
}

.policy-wrapper {
    margin: 70px 0px 70px 0px;
}

@media (max-width: 1080px) {
  .content-container {
    max-width: 700px;
  }
}