/* ===== policy content ===== */
main {
  padding: 120px 24px 160px;
  max-width: 960px;
  margin: 0 auto;
}
h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  background: linear-gradient(90deg, #ff1cf7 0%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: clamp(24px, 4.5vw, 36px);
  margin: 48px 0 20px;
  font-weight: 600;
}
h3 {
  font-size: 22px;
  margin: 32px 0 16px;
  font-weight: 600;
}
p,
li {
  font-size: 18px;
  color: #ddd;
}
ul {
  padding-left: 24px;
  margin: 0;
}

/* ===== footer (same as landing) ===== */
.footer {
  background: #111;
  padding: 40px 24px;
  text-align: center;
  color: #ccc;
  margin-top: 120px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links i {
  font-size: 18px;
}
.footer-copy {
  font-size: 14px;
  color: #666;
}
