/* terms.css */

/* --- Terms Content Layout --- */
.terms-section {
  padding: 8rem 0 6rem 0;
  position: relative;
  z-index: 10;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.terms-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.terms-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.terms-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.terms-body h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem 0;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.terms-body h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.75rem 0 1rem 0;
}

.terms-body p {
  margin-bottom: 1.5rem;
}

.terms-body ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  list-style-type: square;
}

.terms-body li {
  margin-bottom: 0.75rem;
}

.terms-body strong {
  color: var(--text-primary);
}

.terms-body a {
  color: var(--primary-light);
  text-decoration: underline;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.terms-body a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .terms-container {
    padding: 2rem;
    border-radius: 12px;
  }
  
  .terms-title {
    font-size: 2.25rem;
  }
}
