body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-primary);
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
h4 { font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

p + p {
  margin-top: var(--space-4);
}

strong {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

a {
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

ul.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

ul.content-list li {
  position: relative;
  padding-left: var(--space-6);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

ul.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  flex-shrink: 0;
}

/* Legal pages list styling */
ol.legal-list {
  list-style: decimal;
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

ol.legal-list > li {
  line-height: var(--leading-relaxed);
}

ol.legal-list ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

ol.legal-list ul ul {
  list-style: circle;
}

ol.legal-list p {
  margin-top: var(--space-3);
}
