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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  background: #fafafa;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* Main */
main {
  padding: 48px 0;
}

.links {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.links a {
  display: inline-block;
  padding: 12px 28px;
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s;
}

.links a:hover {
  background: #1557b0;
}

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

.about p {
  margin-bottom: 12px;
  color: #444;
}

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

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

.policy h2 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #1a73e8;
}

.policy h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy p {
  margin-bottom: 12px;
  color: #333;
}

.policy ul, .policy ol {
  margin: 12px 0;
  padding-left: 28px;
}

.policy li {
  margin-bottom: 6px;
  color: #333;
}

.policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.policy th, .policy td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #ddd;
}

.policy th {
  background: #f0f4f8;
  font-weight: 600;
}

.policy a {
  color: #1a73e8;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  border-top: 1px solid #e0e0e0;
  padding: 32px 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 4px;
}

footer a {
  color: #1a73e8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header {
    padding: 40px 0;
  }
  header h1 {
    font-size: 1.8rem;
  }
  .links {
    flex-direction: column;
  }
  .links a {
    text-align: center;
  }
}
