:root {
  --blue: #0093c9;
  --blue-dark: #063a56;
  --blue-light: #5ec3e0;
  --sky: #eaf6fc;
  --white: #ffffff;
  --ink: #2b3a45;
  --ink-soft: #5b6b76;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(6, 58, 86, 0.08);
  --max-width: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; color: var(--blue-dark); margin: 0 0 0.5em; line-height: 1.2; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue-dark); color: var(--white); padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; }
.site-header { position: sticky; top: 0; z-index: 20; background: var(--white); box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-text { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--blue-dark); font-size: 1.05rem; line-height: 1.2; }
.brand-text span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; color: var(--ink-soft); font-size: 0.8rem; }
nav.main-nav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
nav.main-nav a { color: var(--blue-dark); font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: background 0.15s ease; }
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { background: var(--sky); text-decoration: none; }
.hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: var(--white); padding: 64px 0 72px; text-align: center; }
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 720px; margin: 0 auto 0.4em; }
.hero p { color: #d6f0fa; max-width: 560px; margin: 0 auto 1.8em; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; font-weight: 600; padding: 13px 26px; border-radius: 999px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--white); color: var(--blue-dark); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { border-color: var(--white); }
section { padding: 64px 0; }
section.alt { background: var(--sky); }
.section-heading { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-heading p { color: var(--ink-soft); margin: 0; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; max-width: 900px; margin: 0 auto; }
.hours-card { background: var(--white); border-left: 4px solid var(--blue); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px; }
.hours-card .day { font-weight: 600; color: var(--blue-dark); margin-bottom: 4px; }
.hours-card .time { color: var(--ink-soft); }
.hours-note { text-align: center; margin-top: 24px; color: var(--ink-soft); font-weight: 500; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 720px; margin: 0 auto; }
.contact-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; text-align: center; }
.contact-card .icon { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--blue); }
.contact-card a { font-weight: 600; font-size: 1.05rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.map-frame, .photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.photo-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.col-heading { font-weight: 600; color: var(--blue-dark); margin-bottom: 12px; }
.assist-hero { text-align: left; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.step { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; position: relative; padding-top: 44px; }
.step .num { position: absolute; top: -14px; left: 20px; background: var(--blue); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.download-box { max-width: 560px; margin: 0 auto; background: var(--sky); border-radius: var(--radius); padding: 32px; text-align: center; }
.download-box .btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(0,147,201,0.3); }
.download-box small { display: block; margin-top: 14px; color: var(--ink-soft); }
.note-box { max-width: 720px; margin: 32px auto 0; border-left: 4px solid var(--blue-light); background: var(--white); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; color: var(--ink-soft); font-size: 0.95rem; }
footer { background: var(--blue-dark); color: #a9d4e6; text-align: center; padding: 28px 0; font-size: 0.9rem; }
footer a { color: var(--white); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
@media (max-width: 640px) { .site-header .container { flex-direction: column; gap: 10px; padding-bottom: 12px; } nav.main-nav ul { gap: 4px; } nav.main-nav a { padding: 8px 12px; font-size: 0.9rem; } .hero { padding: 48px 0 56px; } }
