/* =====================================================
   TERMS & CONDITIONS PAGE – terms-conditions.css
   Order matches terms-conditions.html top → bottom
===================================================== */

/* =====================================================
   PAGE HEADING
   (Shared base.css handles most hero/heading styles)
===================================================== */
/* No page-specific overrides needed here */

/* =====================================================
   TERMS CONTENT WRAPPER
===================================================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px 100px;
}

/* =====================================================
   TYPOGRAPHY FOR LEGAL CONTENT
===================================================== */
.container h2 {
  margin-top: 40px;
  margin-bottom: 12px;
}

.container h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.container p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.container strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =====================================================
   LISTS
===================================================== */
.container ul {
  margin: 10px 0 20px 0;
  padding-left: 20px;
}

.container li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   SEPARATION / READABILITY TWEAKS
===================================================== */
/* Add a little breathing room between major sections */
.container h2 + p,
.container h2 + ul {
  margin-top: 6px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 600px) {
  .container {
    padding: 40px 20px 80px;
  }
}

/* =====================================================
   UTILITIES
===================================================== */
/* No-JS fallback for any fade-in effects used site-wide */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}


