/* Terms and Conditions page specific styles */

.terms-header-section {
  margin-top: var(--space-12);
  margin-bottom: var(--space-10);
  background: linear-gradient(90deg, rgba(98,182,203,0.07) 0%, rgba(144,180,140,0.065) 100%);
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.terms-header-section h1 {
  text-align: center;
  margin-bottom: var(--space-4);
}
.terms-header-section .lead {
  color: var(--color-gray-300);
  font-size: var(--text-lg);
  text-align: center;
  max-width: 54ch;
}

.terms-content-section {
  margin-bottom: var(--space-24);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.terms-section {
  background: var(--color-gray-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-10);
  padding: var(--space-8);
}
.terms-section h2 {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  margin-top: 0;
}
.terms-section ul {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
  list-style-type: disc;
  color: var(--color-gray-100);
}
.terms-section ul ul {
  list-style-type: circle;
  margin-left: var(--space-6);
}
.terms-section li {
  margin-bottom: var(--space-2);
}
.terms-section a {
  word-break: break-word;
}

.terms-footer-cta {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(98,182,203,0.04);
  border-left: 4px solid var(--color-success);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.terms-footer-cta a.button {
  margin-left: var(--space-2);
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .terms-content-section {
    padding: var(--space-2);
  }
  .terms-section {
    padding: var(--space-5);
  }
  .terms-header-section {
    margin-top: var(--space-8);
    margin-bottom: var(--space-6);
  }
}
@media (max-width: 600px) {
  .terms-section {
    padding: var(--space-3);
  }
  .terms-header-section {
    padding: var(--space-3);
  }
  .terms-footer-cta {
    padding: var(--space-3);
  }
}
