/* Terms & Conditions Page */

.terms-section {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 1rem;
  color: var(--text-primary, #1a1a2e);
}

.terms-effective {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted, #888);
}

.terms-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface, #ffffff);
  border-radius: 16px;
  border: 1px solid var(--border, #e8ecf0);
  padding: 3rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary, #444);
}

.terms-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-primary, #1a1a2e);
}

.terms-content h2:first-of-type {
  margin-top: 0;
}

.terms-content p {
  margin-bottom: 1rem;
}

.terms-content ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.terms-content ul ul {
  margin: 0.25rem 0 0.5rem;
}

.terms-content li {
  margin-bottom: 0.4rem;
}

.terms-content strong {
  color: var(--text-primary, #1a1a2e);
  font-weight: 600;
}

.terms-content a {
  color: var(--accent, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-content a:hover {
  color: var(--accent-hover, #1d4ed8);
}

@media (max-width: 768px) {
  .terms-section {
    padding: 6rem 0 3rem;
  }

  .terms-header h1 {
    font-size: 1.8rem;
  }

  .terms-content {
    padding: 1.5rem;
    border-radius: 12px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
