:root {
  --text-primary: #1a1a2e;
  --text-muted: #6c757d;
  --border-color: rgba(0,0,0,0.1);
  --light-card: #f8f9fa;
}

.terms-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-light);
}

.terms-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-coral);
  border-bottom: 3px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.terms-container h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-deep);
}

.terms-container h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.terms-container h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.terms-container p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.terms-container ul,
.terms-container ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-muted);
}

.terms-container li {
  margin-bottom: 0.5rem;
}

.terms-container strong {
  font-weight: 600;
  color: var(--text-light);
}

.terms-container .text-muted {
  color: var(--text-muted) !important;
}

.effective-date {
  background-color: rgba(21,27,46,0.8);
  border-left: 4px solid var(--primary-coral);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  border-radius: 6px;
}

.terms-section {
  margin-bottom: 3rem;
}

.subsection {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.important-notice {
  background-color: var(--dark-slate);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .terms-container h1 {
    font-size: 2rem;
  }
  
  .terms-container h2 {
    font-size: 1.5rem;
  }
  
  .terms-container h3 {
    font-size: 1.25rem;
  }
}