:root {
  --navy: #2B4E88;
  --dark-navy: #30354E;
  --orange: #F2993B;
  --cream: #F5EBE2;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  color: var(--dark-navy);
  background: var(--cream);
  line-height: 1.6;
}
.hero {
  background: linear-gradient(135deg, var(--navy), var(--orange));
  padding: 24px;
  text-align: center;
}
.hero-image {
  max-width: 100%;
  width: 720px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.container { max-width: 720px; margin: 0 auto; padding: 40px 24px 60px; }
h2 { color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 6px; margin-top: 40px; }
.card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin: 16px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pill-button {
  display: inline-block;
  background: var(--orange);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 8px;
}
.qr-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.qr-item { text-align: center; }
.qr-item p { margin: 8px 0 0; font-weight: 600; color: var(--navy); }
.qr-code { width: 150px; height: 150px; border-radius: 12px; border: 1px solid #eee; padding: 8px; background: white; }
.price-plan { display: flex; justify-content: space-between; align-items: center; }
.price-plan .price { font-size: 24px; font-weight: bold; color: var(--navy); }
footer { text-align: center; padding: 32px 24px; color: #888; font-size: 14px; background: white; }
.footer-links { margin-bottom: 8px; }
.footer-links a { color: var(--navy); font-weight: 600; text-decoration: none; margin: 0 4px; }
.footer-links a:hover { text-decoration: underline; }
a { color: var(--navy); }
.legal-body h2 { font-size: 20px; }
.legal-body p { margin: 12px 0; }
