body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0f172a, #1e293b);
  color: #fff;
  margin: 0;
  padding: 0;
}

.navbar {
  background: linear-gradient(to right, #0f172a, #1e293b);
}

.navbar-brand {
  font-weight: 700;
  color: #fff;
}

.nav-link {
  color: #cbd5e1;
  transition: color .3s, transform .2s;
}
.nav-link:hover {
  color: #f97316;
  transform: translateY(-2px);
}
.nav-link.active {
  color: #f97316;
}

.terms-container, .policy-container {
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.terms-container h2, .policy-container h2 {
  font-weight: 700;
  color: #fff;
}

.terms-container h4, .policy-container h4 {
  margin-top: 24px;
  font-weight: 600;
  color: #f97316;
}

.terms-container p, .terms-container li,
.policy-container p, .policy-container li {
  color: #e2e8f0;
  line-height: 1.6;
}

.terms-container ul, .policy-container ul {
  margin-left: 20px;
}

.footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #cbd5e1;
}
.footer-link {
  color: #f97316;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
