#main-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a202c;
  background-color: #ffffff;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}
#main-text h1 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 15px 0;
  border-bottom: 3px solid #1a202c;
  padding-bottom: 8px;
}
#main-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 25px 0 10px 0;
  background: #1a202c;
  color: #ffffff;
  padding: 6px 12px;
}
#main-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0 8px 0;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 4px;
}
#main-text p {
  font-size: 1rem;
  margin: 0 0 10px 0;
  text-align: justify;
  text-justify: inter-word;
}
#main-text p + p {
  text-indent: 1.5em;
  margin-top: -10px;
}
#main-text ol {
  margin: 15px 0;
  padding: 0;
  counter-reset: eng-counter;
  list-style: none;
}
#main-text ol li {
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0 6px 45px;
  border-bottom: 1px solid #edf2f7;
}
#main-text ol li:before {
  counter-increment: eng-counter;
  content: counter(eng-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 700;
  font-family: monospace;
  color: #718096;
}
#main-text ol li:last-child {
  border-bottom: none;
}