/* Terms Page Specific Styles */
.terms-page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.terms-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.terms-hero p {
  font-size: 1.125rem;
  color: #d1d5db;
}

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

.terms-content .card {
  padding: 2rem;
}

.terms-sections {
  space-y: 2rem;
}

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

.terms-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.terms-section p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: disc;
  list-style-position: inside;
  color: #d1d5db;
  line-height: 1.6;
  margin-left: 1rem;
}

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

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2rem;
  }

  .terms-content .card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .terms-page {
    padding: 1rem;
  }

  .terms-hero h1 {
    font-size: 1.75rem;
  }

  .terms-content .card {
    padding: 1rem;
  }
}
