/* ---------- TERMS OF SERVICE PAGE ---------- */

.terms-section {
  background: #ffffff;
  padding: 100px 0 80px;
  min-height: 100vh;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-header {
  margin-bottom: 24px;
}

.back-link {
  display: inline-block;
  color: #43c8d8;
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 18px;
  transition: all 0.2s;
}

.back-link:hover {
  color: var(--teal-light);
  transform: translateX(-4px);
}

.terms-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.terms-updated {
  color: #595f68;
  font-size: 0.95rem;
}

.terms-content {
  line-height: 1.85;
  color: #1a2e44;
}

.terms-block {
  margin-bottom: 32px;
}

.terms-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.terms-block p,
.terms-block li {
  font-size: 1rem;
  color: #1a2e44;
}

.terms-block ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.terms-block li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.terms-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: bold;
}

.terms-block a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.terms-block a:hover {
  color: var(--teal-light);
}

@media (max-width: 768px) {
  .terms-section {
    padding: 80px 0 40px;
  }

  .terms-header h1 {
    font-size: 1.8rem;
  }

  .terms-block h2 {
    font-size: 1.1rem;
  }
}
