:root {
  --brand-blue: #0b5f78;
  --brand-blue-dark: #0a556c;
  --cta-green: #66b72f;
  --cta-green-hover: #58a627;
  --text: #111;
  --muted: #6b7280;
  --line: #e5e7eb;
  --link: #0a66c2;
  --age-gray: #e9edf2;
}

* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; }

.advertorial-bar { padding: 8px 16px; background: #f3f4f6; color: #4b5563; text-align: center; font-size: 20px; font-weight: 700; line-height: 1.4; }
.topbar { background: var(--brand-blue); border-bottom: 4px solid #57b447; }
.topbar-inner { max-width: 1020px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: flex; align-items: center; color: #fff; text-decoration: none; }
.brand img { display: block; width: auto; height: 34px; }
.top-cta, .big-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--cta-green); color: #fff; text-decoration: none; font-weight: 900; border-radius: 4px; }
.top-cta { padding: 10px 14px; white-space: nowrap; font-size: 14px; }
.top-cta:hover, .big-cta:hover { background: var(--cta-green-hover); }
.arrow { display: inline-block; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 8px solid #fff; margin-left: 2px; }
.wrap { max-width: 1020px; margin: 0 auto; padding: 16px 16px 38px; text-align: center; }
.meta { color: var(--muted); font-size: 13px; margin: 12px 0 10px; }
.meta b { color: #0a4e66; font-weight: 900; letter-spacing: .2px; }
.dot { padding: 0 6px; color: #c4c4c4; }
h1 { max-width: 860px; margin: 8px auto 16px; font-size: 44px; line-height: 1.12; font-weight: 900; }
.hero { max-width: 820px; margin: 0 auto 18px; }
.hero img { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: 2px; }
.seenon { max-width: 560px; margin: 8px auto 10px; opacity: .9; }
.seenon img { width: 100%; height: auto; display: block; margin: 0 auto; }
.article { max-width: 760px; margin: 0 auto; text-align: left; font-size: 15px; }
.article p { margin: 12px 0; }
.article a { color: var(--link); font-weight: 900; text-decoration: none; }
.article a:hover { text-decoration: underline; }
blockquote { margin: 14px 0; padding: 14px 16px; background: #f3f4f6; border-left: 4px solid #0a4e66; }
.compare { max-width: 760px; margin: 14px auto 6px; text-align: center; }
.compare img { width: 100%; height: auto; border: 0; display: block; margin: 0 auto; }
.note { margin: 12px 0 2px; font-size: 14px; }
h2 { margin: 20px 0 6px; font-size: 30px; font-weight: 900; }
.steps p { margin: 6px 0; }
.age-title { margin: 14px 0 8px; text-align: center; color: var(--link); font-size: 18px; font-weight: 900; }
.age-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border: 1px solid var(--line); background: #fff; }
.age-row a { display: flex; align-items: center; justify-content: center; padding: 14px 8px; background: var(--age-gray); color: var(--link); font-size: 14px; font-weight: 900; text-decoration: none; border-right: 1px solid #d7dce2; }
.age-row a:last-child { border-right: 0; }
.age-row a:hover { filter: brightness(.97); }
.big-cta-wrap { margin: 16px 0 0; text-align: center; }
.big-cta { min-width: 320px; padding: 14px 22px; font-size: 16px; }
.footer { margin-top: 34px; background: var(--brand-blue-dark); color: #fff; }
.footer-inner { max-width: 1020px; margin: 0 auto; padding: 18px 16px 16px; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.footer-logo img { display: block; width: auto; height: 32px; }
.footer-links { list-style: none; padding: 0; margin: 10px 0; display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center; font-size: 15px; }
.footer-links a { color: #fff; text-decoration: none; font-weight: 700; opacity: .95; }
.footer-links a:hover { text-decoration: underline; }
.copyright { font-size: 14px; opacity: .95; }
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { width: min(760px, calc(100% - 32px)); margin: 30px auto 50px; flex: 1; overflow-wrap: anywhere; word-break: break-word; }
.legal-main h1 { margin: 0 0 8px; text-align: left; font-size: 36px; }
.legal-main h2 { font-size: 22px; margin-top: 26px; }
.legal-header { justify-content: center; }
.legal-main a { color: var(--link); }
.legal-main p, .legal-main li { font-size: 15px; }
.updated { color: var(--muted); font-size: 13px; }
.contact-card { padding: 20px; background: #f3f4f6; border-left: 4px solid var(--brand-blue); }
.contact-card a { color: var(--link); font-weight: 700; }

@media (max-width: 720px) {
  .age-row { grid-template-columns: repeat(3, 1fr); }
  .age-row a:nth-child(3), .age-row a:nth-child(6) { border-right: 0; }
}

@media (max-width: 680px) {
  h1 { font-size: 30px; }
  .topbar-inner { flex-direction: column; }
  .big-cta { width: 100%; min-width: 0; }
  .legal-main h1 { font-size: 30px; }
}

@media (max-width: 375px) {
  .top-cta { width: 100%; white-space: normal; }
}
