:root {
  --bg: #f7f3ea;
  --ink: #1e1b16;
  --accent: #1f7a5b;
  --accent-2: #f2b04c;
  --card: #fffdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Verdana", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8e8 0%, #f1e7d2 55%, #e8dfc9 100%);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.top-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 14px 12px;
  background: #fff8e7;
  border-bottom: 2px solid var(--accent-2);
  font-weight: 700;
}

.hero {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 48px 8vw;
  background: linear-gradient(120deg, #fffdf6 0%, #fef1d2 60%, #f7e0b6 100%);
  border-bottom: 4px solid var(--accent-2);
}

.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 0 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #6b5b47;
  margin: 0;
}

.tagline {
  font-size: 1.1rem;
  max-width: 520px;
}

.support {
  font-weight: bold;
}

.hero__image {
  background: var(--card);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.hero__image img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  background: #ece5d7;
}

.image-note {
  margin: 8px 0 0 0;
  font-size: 0.85rem;
  color: #6b5b47;
}

main {
  padding: 32px 8vw 48px 8vw;
}

.privacy-page {
  max-width: 980px;
  margin: 0 auto;
}

.section {
  margin-bottom: 28px;
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.section h2, .section h3 {
  margin-top: 0;
  color: #243a2f;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

ul {
  padding-left: 18px;
}

.tv-note {
  font-weight: bold;
  color: #4a3a2a;
}

footer {
  text-align: center;
  padding: 20px 12px 32px 12px;
  color: #5c4b3b;
}
