.terms-content {
  font-size: 0.9375rem; /* Slightly smaller for professional density */
  line-height: 1.8; /* Increased breathing room */
}
/* Order list */
/* level-1 */
.terms-content ol {
  list-style-type: none;
  counter-reset: section;
  padding-left: 0;
}
.terms-content > ol > li {
  counter-increment: section;
  position: relative;
  padding-left: 3rem;
}
.terms-content > ol > li::before {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1b69f7; /* corporateBlue */
  opacity: 0.4;
  line-height: 1.8rem; /* Aligned with title height */
  letter-spacing: 0.05em;
}
/* level-2 */
.terms-content ol ol {
  counter-reset: subsection;
  padding-left: 0;
  margin-top: 1rem;
}
.terms-content ol ol > li {
  counter-increment: subsection;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.terms-content ol ol > li::before {
  content: counter(section) "." counter(subsection);
  position: absolute;
  left: 0;
  width: 2rem;
  font-weight: 600;
  color: var(--color-slate-600);
  font-size: 0.8125rem;
  line-height: 1.75rem; /* Aligned with content */
}
/* level-3 */
.terms-content ol ol ol {
  counter-reset: subsubsection;
  padding-left: 0;
  margin-top: 0.75rem;
}
.terms-content ol ol ol > li {
  counter-increment: subsubsection;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.terms-content ol ol ol > li::before {
  content: "(" counter(subsubsection, lower-alpha) ") ";
  position: absolute;
  left: 0;
  width: 2rem;
  font-weight: 400;
  color: var(--color-slate-500);
}
.terms-content > ol > li {
  margin-bottom: 4rem;
}

/* Unorder list  */
.terms-content ul {
  list-style-type: none;
  padding-left: 0rem;
  margin-top: 0.75rem;
}
.terms-content ul > li {
  padding-left: 2rem;
  position: relative;
}
.terms-content ul > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1b69f7;
  font-size: 1rem;
  opacity: 0.5;
  line-height: 1.75rem; /* Aligned with content */
}
