/* ===========================
   TERMS & CONDITIONS PAGE
   =========================== */

.terms h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--brand);
}

.terms h3 {
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  border-left: 4px solid var(--brand);
  padding-left: 10px;
}

.terms ul {
  margin: 0.5rem 0 1rem 1.2rem;
  padding-left: 1rem;
  list-style: none;
}

.terms ul li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.terms ul li::before {
  content: "✔";
  color: var(--brand);
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.terms p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.terms p.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.signature {
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
  color: var(--muted);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */

@media (max-width: 768px) {
  .terms h2 {
    font-size: 1.7rem;
  }

  .terms h3 {
    font-size: 1.15rem;
    padding-left: 8px;
  }

  .terms ul li {
    font-size: 0.95rem;
    padding-left: 1rem;
  }

  .terms ul li::before {
    font-size: 0.8rem;
  }

  .terms p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .terms h2 {
    font-size: 1.5rem;
  }

  .terms h3 {
    font-size: 1.05rem;
  }

  .terms p, 
  .terms ul li {
    font-size: 0.9rem;
  }

  .signature {
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }
}
