
:root {
  --blue:#1e4a95;
  --blue-dark:#153a77;
  --red:#d62525;
  --text:#203041;
  --bg:#eef2f7;
  --line:#dbe3ef;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}
a { color:inherit; text-decoration:none; }
.page {
  max-width:1200px;
  margin:0 auto;
  min-height:100vh;
  background:#fff;
  box-shadow:0 18px 48px rgba(30,48,74,.14);
  overflow:hidden;
}
.top-banner {
  background:var(--red);
  color:#fff;
  text-align:center;
  font-weight:800;
  letter-spacing:1.5px;
  font-size:24px;
  padding:16px 12px;
  text-transform:uppercase;
}
.inner { padding:24px; }
.top-row {
  display:grid;
  grid-template-columns:minmax(320px, 560px) 1fr;
  gap:18px;
  align-items:center;
}
.brand img {
  width:min(100%, 610px);
  height:auto;
  display:block;
}
.actions {
  display:flex;
  justify-content:flex-end;
  gap:14px;
  flex-wrap:wrap;
}
.actions a {
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  font-size:21px;
  background:#f2f6ff;
  border:2px solid #c9d4ea;
  color:var(--blue);
  white-space:nowrap;
}
.actions a.contact {
  background:#1e4a95;
  color:#fff;
  border-color:#1e4a95;
}
.hero {
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
  margin-top:24px;
}
.tagline {
  font-size:clamp(32px, 3.1vw, 46px);
  font-weight:800;
  color:var(--blue-dark);
  line-height:1.18;
  letter-spacing:-.02em;
}
.hero-photo {
  border-radius:24px;
  overflow:hidden;
  min-height:340px;
  max-height:380px;
  background:#d7e0ee;
  box-shadow:0 8px 20px rgba(32,48,65,.08);
}
.hero-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.tiles {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}
.tile {
  background:#f7f9fd;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  text-align:center;
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  box-shadow:0 8px 22px rgba(32,48,65,.06);
  cursor:pointer;
}
.tile-image {
  width:100%;
  min-height:138px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.tile-image img {
  display:block;
  width:auto;
  height:auto;
  max-width:88%;
  max-height:130px;
  object-fit:contain;
  margin:0 auto;
}
.tile h2 {
  margin:0 0 10px;
  font-size:31px;
  line-height:1.1;
  color:var(--blue-dark);
}
.pill-mini {
  display:inline-block;
  margin:0 0 10px;
  padding:9px 15px;
  border-radius:999px;
  font-size:16px;
  font-weight:800;
  background:#e8eef9;
  color:var(--blue-dark);
}
.tile p {
  margin:0;
  font-size:22px;
  line-height:1.3;
  color:#4a596b;
  overflow-wrap:anywhere;
}
.tile.mylife .tile-image { min-height:220px; margin-bottom:4px; }
.tile.mylife .tile-image img { max-width:100%; max-height:210px; }
.tile.medicare .tile-image img { max-width:96%; max-height:126px; }
.tile.scam .tile-image img { max-width:95%; max-height:126px; }
.tile.resources .tile-image img { max-width:78%; max-height:120px; }
.tile.community .tile-image img { max-width:88%; max-height:126px; }
.tile.events .tile-image img { max-width:88%; max-height:126px; }

.card {
  margin-top:26px;
  padding:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 8px 22px rgba(32,48,65,.06);
}
.card.alt { background:#f7f9fd; }
.card h1, .card h2 {
  margin:0 0 12px;
  color:var(--blue-dark);
  font-size:36px;
}
.card p, .card a, .card li {
  margin:0 0 14px;
  font-size:20px;
  line-height:1.6;
  overflow-wrap:anywhere;
}
.contact h2 { font-size:34px; }
.contact p, .contact a { font-size:24px; line-height:1.45; }
.footer {
  margin-top:26px;
  background:#153a77;
  color:#fff;
  padding:24px;
  border-radius:20px;
}
.footer h3 { margin:0 0 10px; font-size:26px; }
.footer a, .footer p {
  color:#fff;
  font-size:20px;
  line-height:1.5;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:20px;
}
.button-row { margin-top:12px; }
.button-row a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:2px solid #c9d4ea;
  background:#f2f6ff;
  color:#1e4a95;
  font-weight:800;
}
@media (max-width:980px) {
  .top-row { grid-template-columns:1fr; }
  .actions { justify-content:flex-start; }
  .hero { grid-template-columns:1fr; }
  .tiles { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
}
@media (max-width:760px) {
  .inner { padding:16px; }
  .actions { flex-direction:column; }
  .actions a { width:100%; text-align:center; }
  .tiles { grid-template-columns:1fr; }
  .hero-photo { min-height:300px; }
  .tile p, .card p, .card a, .card li, .footer a, .footer p { font-size:18px; }
  .card h1, .card h2, .contact h2 { font-size:30px; }
  .tile h2 { font-size:28px; }
}
