/* Terms Page Specific Styles */
.terms-header {
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

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

.terms-section h2 {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

.terms-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.terms-section ul,
.terms-section ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.terms-section ul li,
.terms-section ol li {
  margin-bottom: 0.5rem;
}

.terms-section ul ul,
.terms-section ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.effective-date {
  font-style: italic;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.important-notice {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-weight: 500;
}

.contact-info {
  background: var(--dark-card, rgba(255,255,255,0.05));
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.25rem;
  }
  
  .terms-section ul,
  .terms-section ol {
    padding-left: 1.5rem;
  }
}