.terms-page {
  background-color: var(--color-background-warm);
}

.terms-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 40%, #f0f2f0 100%);
}



.terms-hero-intro {
  margin-top: var(--space-2);
}

.terms-breadcrumbs {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.terms-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-left: 0;
}

.terms-breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-gray-400);
}

.terms-breadcrumbs li:last-child::after {
  content: "";
}

.terms-breadcrumbs a {
  color: var(--color-text-muted);
}

.terms-breadcrumbs a:hover {
  color: var(--color-primary);
}

.terms-content {
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}

.terms-article {
  background-color: var(--color-background);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8) var(--space-6);
}

@media (min-width: 768px) {
  .terms-article {
    padding: var(--space-10) var(--space-12);
  }
}

.terms-section + .terms-section {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
}

.terms-section h2 {
  margin-bottom: var(--space-4);
}

.terms-section h3 {
  margin-top: var(--space-4);
}

.terms-section ul {
  margin-top: var(--space-2);
}

.terms-section li {
  color: var(--color-text-secondary);
}

.terms-section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.terms-section a:hover {
  text-decoration-thickness: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .terms-article {
    scroll-behavior: auto;
  }
}
