* {
  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;
}

h1 {
  margin-bottom: 1rem;
}

h2 {
  margin-top: 30px;
  margin-bottom: 0.75rem;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 15px;
}

ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

ol>li {
  counter-increment: item;
  margin-bottom: 1rem;
}

ol>li::before {
  content: counter(item) ". ";
  font-weight: bold;
}

ol ol {
  counter-reset: subitem;
  list-style: none;
  padding-left: 2rem;
}

ol ol>li {
  counter-increment: subitem;
  margin-bottom: 0.75rem;
}

ol ol>li::before {
  content: counter(item) "." counter(subitem) " ";
  font-weight: bold;
}

ul.bullet-list {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 15px;
}

ul.bullet-list>li {
  margin-bottom: 8px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.alpha-list li {
  list-style-type: disc;
}