body {
  background-color: var(--color-background);
}

.terms-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.terms-header {
  text-align: left;
}

.terms-header h1 {
  margin-bottom: var(--space-3);
}

.terms-intro {
  max-width: 720px;
}

.terms-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding: 0;
  list-style: none;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.terms-breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

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

.terms-section {
  padding: var(--space-5) var(--space-4);
}

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

.terms-section p {
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .terms-section {
    padding: var(--space-6);
  }
}
