/* ============================================
   POLICY.CSS — shared for privacy, terms, support
============================================ */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.policy-topbar {
  background: #c9b06a;
  color: #111;
  text-align: right;
  padding: 6px 30px;
  font-size: 14px;
}

.policy-navbar {
  background: #fff;
  padding: 14px 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.policy-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.policy-logo img {
  height: 36px;
}

.policy-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.policy-body {
  max-width: 820px;
  margin: 60px auto;
  padding: 50px clamp(20px, 5%, 60px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
  line-height: 1.75;
}

.policy-body h1 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
}

.policy-body .subtitle {
  color: #64748b;
  margin-bottom: 36px;
  font-size: 14px;
}

.policy-body h3 {
  font-size: 17px;
  color: #1e293b;
  margin: 28px 0 10px;
}

.policy-body p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 14px;
}

.policy-body ul {
  padding-left: 20px;
  color: #475569;
  font-size: 15px;
}

.policy-body ul li {
  margin-bottom: 8px;
}

.policy-footer {
  background: #1e2235;
  color: #cbd5e1;
  text-align: center;
  padding: 28px 5%;
  font-size: 13px;
  margin-top: 60px;
}

.policy-footer a {
  color: #a78bfa;
  text-decoration: none;
  margin: 0 8px;
}

.policy-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-topbar {
    text-align: center;
    font-size: 12px;
    padding: 6px 12px;
  }

  .policy-body {
    margin: 30px 5%;
    padding: 30px 20px;
  }

  .policy-body h1 {
    font-size: 24px;
  }
}