/* ================= TERMS AND CONDITIONS PAGE ================= */
.terms-section {
  margin-bottom: var(--space-8);
  padding: var(--space-8) var(--space-10);
}
@media (max-width: 800px) {
  .terms-section {
    padding: var(--space-6) var(--space-4);
  }
}
@media (max-width: 530px) {
  .terms-section {
    padding: var(--space-4) var(--space-1);
  }
}
.terms-intro {
  font-size: var(--font-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.terms-list {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  list-style: disc inside;
}
.terms-list li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}
.cta-bar {
  margin: var(--space-8) auto var(--space-12) auto;
  text-align: center;
}
.cta-bar .button {
  font-size: var(--font-lg);
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  box-shadow: var(--shadow-sm);
}

/* Inherit espionage accent for links */
.terms-section a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--color-primary);
}
.terms-section a:hover, .terms-section a:focus-visible {
  color: var(--color-success);
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  .terms-section {
    background: var(--color-surface);
  }
}
