:root {
  --bg-1: #07142e;
  --bg-2: #101f4f;
  --card: rgba(255, 255, 255, 0.94);
  --text: #15213d;
  --muted: #63708a;
  --blue: #2563eb;
  --blue-dark: #153eaf;
  --yellow: #ffd43b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 212, 59, .22), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(37, 99, 235, .34), transparent 30%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

.policy-app {
  width: 100%;
  min-height: 100vh;
  padding: 28px;
}

.policy-shell {
  width: min(960px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 24px;
}

.policy-header {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}

.logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.policy-header h1 {
  margin: 0 0 8px;
  color: var(--blue-dark);
}

.policy-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  line-height: 1.55;
}

.policy-content h2 {
  margin: 22px 0 8px;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.policy-content h3 {
  margin: 14px 0 6px;
  color: #1f3d8a;
  font-size: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: #25324f;
}

.policy-content ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.policy-content a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.policy-content a:hover {
  text-decoration: underline;
}

.policy-content hr {
  border: none;
  border-top: 1px solid #dbe5ff;
  margin: 18px 0;
}

@media (max-width: 700px) {
  .policy-app {
    padding: 14px;
  }

  .policy-shell {
    border-radius: 26px;
    padding: 12px;
  }

  .policy-header,
  .policy-content {
    border-radius: 22px;
    padding: 16px;
  }

  .logo {
    width: 96px;
  }

  .policy-header h1 {
    font-size: 1.35rem;
  }
}
