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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #111;
}

/* Hero */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #f7f7f7;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
}

/* Sections */
.about, .contact {
  padding: 60px 20px;
}

.about {
  background: #fff;
}

.contact {
  background: #f7f7f7;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

section p {
  margin-bottom: 8px;
}

section a {
  color: #1a73e8;
}

/* Policy pages */
.policy {
  padding: 60px 20px;
  background: #fff;
}

.policy h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.policy .last-updated {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.policy h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy p, .policy li {
  margin-bottom: 8px;
}

.policy ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy a {
  color: #1a73e8;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  padding: 32px 20px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
