/* ================================
   Terms of Service Page Styles
================================ */
.terms-container {
  max-width: 900px;
  margin: 100px auto 60px;
  padding: 40px 20px;
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
}

.terms-header h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.terms-header .last-updated {
  color: var(--gray);
  font-size: 0.95rem;
}

.terms-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.terms-content h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.terms-content h2:first-child {
  margin-top: 0;
}

.terms-content h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin: 25px 0 15px;
}

.terms-content p,
.terms-content ul {
  color: #334155;
  line-height: 1.8;
}

.terms-content ul {
  margin: 15px 0 15px 25px;
}

.terms-content li {
  margin-bottom: 10px;
}

.highlight-box {
  background: #f0f7ff;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 25px 0;
  border-radius: 6px;
}

@media (max-width: 1000px) {
  .terms-container {
    margin-top: 40px;
  }
  .terms-header h1 {
    font-size: 2rem;
  }
  .terms-content {
    padding: 25px 20px;
  }
  .terms-content h2 {
    font-size: 1.5rem;
  }
}
/* ================================
   CTA Section
================================ */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f1f5f9;
}
