/* Cardboard Snap - Privacy Site Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #F0F5EC;
  color: #3D4F3D;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.header {
  text-align: center;
  margin-bottom: 32px;
}

.header .logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.header h1 {
  font-size: 26px;
  font-weight: 900;
  color: #2D3B2D;
  margin-bottom: 4px;
}

.header .subtitle {
  font-size: 16px;
  color: #6B8A6B;
  margin-bottom: 8px;
}

.header .updated {
  font-size: 12px;
  color: #8FA98F;
}

.section {
  background: #FAFDF7;
  border: 1px solid #D4E4C8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.section h2 {
  font-size: 16px;
  font-weight: 800;
  color: #2D3B2D;
  margin-bottom: 12px;
}

.section p {
  font-size: 14px;
  color: #5A6F5A;
  line-height: 24px;
  margin-bottom: 10px;
}

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

.section ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

.section ul li {
  font-size: 14px;
  color: #5A6F5A;
  line-height: 24px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7BAE7B;
  font-weight: bold;
}

.bold {
  font-weight: 700;
  color: #3D4F3D;
}

.footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #D4E4C8;
}

.footer p {
  font-size: 12px;
  color: #8FA98F;
  margin-bottom: 4px;
}

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

.nav-links a {
  font-size: 13px;
  color: #5A8A5A;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2D3B2D;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .container { padding: 24px 16px 40px; }
  .header h1 { font-size: 22px; }
  .section { padding: 16px; }
  .nav-links { gap: 16px; }
}
