:root {
  --bg: #f8f4f1;
  --bg-soft: #fffaf7;
  --card: rgba(255, 255, 255, 0.88);
  --text: #4f4350;
  --muted: #7d7180;
  --heading: #544765;
  --line: rgba(137, 117, 149, 0.18);
  --accent: #c9b7d8;
  --accent-strong: #a88bc2;
  --mint: #cfe5db;
  --shadow: 0 18px 50px rgba(116, 96, 126, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 183, 216, 0.45), transparent 30%),
    radial-gradient(circle at bottom right, rgba(207, 229, 219, 0.55), transparent 28%),
    linear-gradient(180deg, #fcf7f4 0%, #f6f0f7 100%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 48px 20px;
  overflow: hidden;
}

.background-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
  pointer-events: none;
}

.blob-1 {
  width: 340px;
  height: 340px;
  top: -90px;
  right: -90px;
  background: rgba(201, 183, 216, 0.55);
}

.blob-2 {
  width: 280px;
  height: 280px;
  bottom: -70px;
  left: -70px;
  background: rgba(207, 229, 219, 0.65);
}

.policy-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 34px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 183, 216, 0.18);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 52px);
  margin-bottom: 14px;
}

h2 {
  font-size: 26px;
  margin: 34px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

h3 {
  font-size: 18px;
  margin: 22px 0 10px;
}

p,
li {
  font-size: 16px;
  line-height: 1.8;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

ul {
  margin: 10px 0 16px;
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.info-box,
.contact-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 247, 0.86));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  margin-top: 16px;
}

footer {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

strong {
  font-weight: 600;
  color: var(--heading);
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 12px;
  }

  .policy-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  h2 {
    font-size: 22px;
  }

  p,
  li {
    font-size: 15px;
    line-height: 1.75;
  }
}
