:root {
  --navy: #12365d;
  --navy-dark: #0b2745;
  --black: #000000;
  --grey: #adadad;
  --blue: #2f78b7;
  --ink: #102033;
  --muted: #617083;
  --line: #dbe4ee;
  --bg: #f3f7fb;
  --surface: #ffffff;
  --warning-bg: #fff7e4;
  --warning-line: #f0cc70;
  --shadow: 0 18px 50px rgba(16, 32, 51, 0.12);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.45; }
a { color: inherit; }
.wrap { width: min(1460px, calc(100% - 48px)); margin: 0 auto; }
.hero { background: linear-gradient(135deg, var(--black), var(--grey)); color: #f8f6f6; padding: 24px 0 86px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid rgba(255,255,255,.7); border-radius: 8px; font-weight: 800; font-size: 1.05rem; }
.brand span:last-child { display: grid; gap: 8px; text-transform: uppercase; letter-spacing: .08em; }
.brand strong { font-size: .92rem; }
.brand em { font-style: normal; text-transform: none; letter-spacing: 0; font-weight: 800; font-size: 1.68rem; line-height: 1; }
.home-link { font-weight: 800; text-decoration: none; }
.home-link:hover { text-decoration: underline; }
.hero-copy { max-width: 1000px; padding-top: 96px; }
.eyebrow { margin: 0 0 16px; font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 1040px; margin-bottom: 26px; font-size: clamp(3rem, 6vw, 5.25rem); line-height: 1.08; letter-spacing: 0; }
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; }
h3 { margin-bottom: 10px; font-size: 1.2rem; }
.hero-copy p:last-child { max-width: 900px; margin: 0; font-size: 1.16rem; color: rgba(255,255,255,.92); }
.alert-card { display: flex; align-items: center; gap: 28px; margin-top: -34px; padding: 24px 30px; background: var(--surface); border: 1px solid var(--line); border-left: 8px solid var(--blue); border-radius: 8px; box-shadow: var(--shadow); font-size: 1.02rem; }
.search-section { padding: 66px 0 48px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
#result-count { margin: 0; color: var(--muted); font-weight: 800; }
.filters { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr auto; gap: 14px; align-items: end; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 28px rgba(16, 32, 51, .06); }
label { display: grid; gap: 8px; font-weight: 800; }
input, select { width: 100%; min-height: 50px; border: 1px solid #c9d6e4; border-radius: 6px; padding: 0 14px; color: var(--ink); background: #fff; font: inherit; }
input:focus, select:focus { border-color: var(--blue); outline: 3px solid rgba(47, 120, 183, .22); }
button { min-height: 50px; border: 0; border-radius: 6px; padding: 0 22px; background: var(--navy); color: #fff; cursor: pointer; font: inherit; font-weight: 900; }
button:hover { background: var(--navy-dark); }
.status-message { margin-top: 22px; padding: 18px 20px; border: 1px solid var(--warning-line); border-radius: 8px; background: var(--warning-bg); color: #71500f; }
.resource-list { display: grid; gap: 18px; margin-top: 24px; }
.resource-card { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 30px rgba(16, 32, 51, .07); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.card-top h3 { margin: 0; color: var(--navy); }
.pill { flex: 0 0 auto; padding: 5px 10px; border-radius: 999px; color: var(--navy); background: #e7f1fb; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.service { color: var(--muted); font-size: 1.02rem; }
.details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 18px; margin: 18px 0 0; padding: 0; list-style: none; }
.details span { color: var(--muted); font-weight: 800; }
.notes { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); }
.info-box { margin-bottom: 64px; padding: 24px 26px; border: 1px solid #bcdcf7; border-radius: 8px; background: #eaf5ff; color: var(--navy); }
.info-box p { margin: 0; }
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; color: var(--muted); }
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--navy); font-weight: 800; text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
@media (max-width: 1100px) { .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); } button { width: 100%; } .details { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .wrap { width: min(100% - 32px, 1460px); } .hero { padding-bottom: 70px; } .topbar, .alert-card, .section-heading, .footer-inner, .card-top { align-items: flex-start; flex-direction: column; } .hero-copy { padding-top: 58px; } .brand em { font-size: 1.18rem; } h1 { font-size: clamp(2.5rem, 13vw, 4rem); } .filters, .details { grid-template-columns: 1fr; } }
.filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-buttons button {
  width: 100%;
}
.footer-disclaimer {
  flex-basis: 100%;
  width: 100%;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.footer-disclaimer p {
  margin: 0;
}
