:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --text: #2a3439;
  --text-soft: #566166;
  --primary: #495f84;
  --primary-strong: #405474;
  --primary-soft: #d6e3ff;
  --line-soft: rgba(113, 124, 130, 0.14);
  --shadow-card: 0 22px 44px rgba(42, 52, 57, 0.06);
  --radius-sm: 1rem;
  --container: min(1040px, calc(100vw - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 227, 255, 0.88), transparent 24%),
    radial-gradient(circle at top right, rgba(237, 243, 255, 0.7), transparent 20%),
    linear-gradient(180deg, #f9fbfd 0%, #f7f9fb 36%, #f1f5f8 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.policy-body {
  background:
    radial-gradient(circle at top left, rgba(214, 227, 255, 0.6), transparent 30%),
    linear-gradient(180deg, #f9fbfd 0%, #f1f5f8 100%);
  min-height: 100vh;
}

.policy-main {
  padding: 6rem 0 5rem;
}

.policy-main .container {
  max-width: 880px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.2s var(--ease);
}

.policy-back:hover {
  color: var(--primary-strong);
}

.policy-main h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #001B3D;
  margin: 0 0 1.2rem;
}

.policy-main > p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 62ch;
  margin: 0 0 2.5rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.policy-section {
  padding: 1.75rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.policy-section h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #001B3D;
  margin: 0 0 0.5rem;
}

.policy-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

@media (min-width: 720px) {
  .policy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .policy-section {
    padding: 2rem 2.25rem;
  }
}
