:root {
  --teal: #0f766e;
  --teal-dark: #115e59;
  --teal-soft: #ecfdf5;
  --ink: #10201d;
  --muted: #66736f;
  --paper: #ffffff;
  --background: #f7faf8;
  --border: #dfe9e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 118, 110, 0.12),
      transparent 32%
    ),
    var(--background);
  color: var(--ink);
  line-height: 1.7;
}

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

a:hover {
  color: var(--teal-dark);
}

.privacy-page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 18px 72px;
}

.privacy-hero {
  padding: 42px 0 34px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 42px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--teal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.8);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 9vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.5vw, 1.22rem);
  margin-bottom: 18px;
}

.updated {
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 58px);
  box-shadow: 0 24px 80px rgba(16, 32, 29, 0.08);
}

.privacy-card h2 {
  font-size: clamp(1.28rem, 3vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-top: 42px;
  margin-bottom: 14px;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card a {
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 118, 110, 0.35);
}

.privacy-card a:hover {
  border-bottom-color: var(--teal-dark);
}

@media (min-width: 760px) {
  .privacy-page {
    padding: 42px 28px 96px;
  }

  .privacy-hero {
    padding-top: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
