:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #A7C957;
  --cream: #FEFAE0;
  --cream-dark: #F5F0D0;
  --coral: #E76F51;
  --text-dark: #1a2e22;
  --text-mid: #3d5a47;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(254, 250, 224, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-deep);
  text-decoration: none;
}
.nav-logo span { color: var(--coral); }

.nav-back {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--coral); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-top: 32px;
  margin-bottom: 10px;
}

p, li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

footer {
  background: var(--green-deep);
  color: rgba(254, 250, 224, 0.5);
  text-align: center;
  padding: 32px 20px;
  font-size: 0.82rem;
}

footer a {
  color: rgba(254, 250, 224, 0.5);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
}
footer a:hover { color: var(--cream); }

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--coral); }

.footer-links { margin-bottom: 16px; }

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  main { padding: 48px 20px 64px; }
}
