/* Terms page specific styles */
.terms-content {
  color: var(--text-light);
  line-height: 1.8;
}

.terms-content h1 {
  color: var(--primary-gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.terms-content h2 {
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--card-border);
  padding-bottom: 0.5rem;
}

.terms-content h3 {
  color: var(--accent-cyan);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

.terms-content ul li,
.terms-content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

.last-updated {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.last-updated p {
  margin: 0;
  color: var(--text-light);
  font-weight: 500;
}

.important-notice {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.1));
  border-left: 4px solid var(--primary-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.important-notice p {
  margin: 0;
  color: var(--text-light);
  font-weight: 500;
}

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