/* ============================================
   USGEO — Refined Government Design
   Apple-level polish meets .gov structure
   ============================================ */

:root {
  --navy: #0c1d3a;
  --navy-light: #152a4e;
  --blue: #1a6bdb;
  --blue-dark: #155bb5;
  --blue-light: #4a9af5;
  --blue-pale: #e8f1fd;
  --blue-tint: #f4f8ff;
  --teal: #0e9aa7;
  --teal-pale: #e4f6f7;
  --green: #2d8659;
  --green-pale: #e6f4ed;
  --amber: #c27f17;
  --amber-pale: #fdf3e0;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --transition: 0.2s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--blue-dark); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
address { font-style: normal; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Government Banner
   ============================================ */

.gov-banner {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
}

.gov-banner-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.gov-flag { flex-shrink: 0; }

.gov-banner-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: var(--blue);
  margin-left: 8px;
}

.gov-banner-toggle .material-symbols-outlined {
  font-size: 16px;
  transition: var(--transition);
}

.gov-banner-toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
}

.gov-banner-details {
  display: none;
  padding: 16px 0 20px;
  gap: 40px;
}

.gov-banner-details.open { display: flex; }

.gov-banner-col {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.gov-banner-col > .material-symbols-outlined {
  font-size: 28px;
  color: var(--blue);
  flex-shrink: 0;
}

.gov-banner-col p {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
  color: var(--gray-500);
}

/* ============================================
   Site Header
   ============================================ */

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.site-logo:hover { color: var(--blue-dark); }

.logo-globe {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--blue);
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-full {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.3;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 1px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Navigation */
.main-nav {
  background: var(--navy);
}

.nav-list {
  display: flex;
  align-items: stretch;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-item .material-symbols-outlined {
  font-size: 18px;
  transition: var(--transition);
}

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition);
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-item .material-symbols-outlined { transform: rotate(180deg); }

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--blue-tint);
  color: var(--blue);
}

.dropdown li:last-child a { border-bottom: none; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 13px 28px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: none;
}

.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 29, 58, 0.92) 0%,
    rgba(12, 29, 58, 0.7) 50%,
    rgba(12, 29, 58, 0.45) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   Alert Bar
   ============================================ */

.alert-bar {
  background: var(--blue-pale);
  border-bottom: 1px solid #cddff5;
  padding: 14px 0;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-content > .material-symbols-outlined {
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
}

.alert-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
}

.alert-content a { font-weight: 600; }

/* ============================================
   Content Sections
   ============================================ */

.content-section {
  padding: 80px 0;
}

.section-navy {
  background: var(--navy);
}

.section-soft {
  background: var(--gray-50);
}

.section-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-eyebrow-light {
  color: var(--blue-light);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 48px;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col-wide {
  grid-template-columns: 1.3fr 1fr;
}

.col-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* Stat Card */
.stat-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ============================================
   Purpose Cards
   ============================================ */

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.purpose-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.purpose-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.purpose-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.purpose-icon .material-symbols-outlined {
  font-size: 24px;
}

.purpose-icon-blue {
  background: rgba(26, 107, 219, 0.2);
  color: var(--blue-light);
}

.purpose-icon-teal {
  background: rgba(14, 154, 167, 0.2);
  color: #5dd9e2;
}

.purpose-icon-green {
  background: rgba(45, 134, 89, 0.2);
  color: #6dd4a0;
}

.purpose-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.purpose-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   Impact Section
   ============================================ */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.impact-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}

.impact-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.impact-card-accent {
  border-color: var(--blue);
}

.impact-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.impact-card-body {
  padding: 24px;
}

.impact-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.impact-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}

.impact-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.impact-tile {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.impact-tile:hover {
  background: var(--blue-tint);
  border-color: var(--blue-pale);
}

.impact-tile > .material-symbols-outlined {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.impact-tile strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.impact-tile p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   Image Break
   ============================================ */

.image-break {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.image-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 29, 58, 0.9) 0%,
    rgba(12, 29, 58, 0.65) 60%,
    rgba(12, 29, 58, 0.4) 100%
  );
}

.image-break .container {
  position: relative;
  z-index: 1;
}

.image-break-content {
  max-width: 580px;
  padding: 64px 0;
}

.image-break-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.image-break-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   Work Grid
   ============================================ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.work-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--gray-800);
  transition: var(--transition);
}

.work-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  color: var(--gray-800);
}

.work-card:hover .card-arrow {
  color: var(--blue);
  transform: translateX(2px);
}

.work-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-card-icon .material-symbols-outlined { font-size: 24px; }

.wc-blue { background: var(--blue-pale); color: var(--blue); }
.wc-teal { background: var(--teal-pale); color: var(--teal); }
.wc-amber { background: var(--amber-pale); color: var(--amber); }
.wc-green { background: var(--green-pale); color: var(--green); }

.work-card-body { flex: 1; }

.work-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.work-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

.card-arrow {
  font-size: 20px;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: var(--transition);
}

/* ============================================
   GEO Feature
   ============================================ */

.geo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.geo-feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.geo-feature-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.geo-feature-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.geo-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.geo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}

.geo-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateX(3px);
}

.geo-link .material-symbols-outlined {
  font-size: 18px;
  transition: var(--transition);
}

.geo-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}

/* ============================================
   Exhibits
   ============================================ */

.exhibits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.exhibit-card {
  display: block;
  text-decoration: none;
  color: var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

.exhibit-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  color: var(--gray-800);
}

.exhibit-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.exhibit-body {
  padding: 24px;
}

.exhibit-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.exhibit-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.exhibit-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.exhibit-card:hover .exhibit-cta {
  color: var(--blue-dark);
}

/* ============================================
   CTA Block
   ============================================ */

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 520px;
}

.section-gradient .btn-white {
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--gray-900);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

.footer-logo .logo-globe { color: rgba(255,255,255,0.6); }
.footer-logo .logo-name { color: var(--white); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-col a:hover { color: var(--white); }

.footer-col address {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.footer-col address strong { color: rgba(255,255,255,0.85); }
.footer-col address a { color: var(--blue-light); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 1024px) {
  .two-col,
  .two-col-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .geo-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .geo-feature-image img {
    height: 280px;
  }

  .exhibits-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-block {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .main-nav { display: none; }
  .main-nav.active { display: block; }

  .nav-list { flex-direction: column; }

  .nav-item {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown a {
    padding: 10px 40px;
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.04);
  }

  .dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
  }

  .hero { min-height: 420px; }
  .hero-content { padding: 56px 0; }
  .hero-overlay { background: rgba(12, 29, 58, 0.82); }

  .content-section { padding: 56px 0; }

  .impact-tiles { grid-template-columns: 1fr; }

  .image-break { min-height: 320px; }
  .image-break-overlay { background: rgba(12, 29, 58, 0.85); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }

  .gov-banner-details {
    flex-direction: column;
    gap: 16px;
  }

  .geo-feature-image img { height: 220px; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .container { padding: 0 16px; }
  .logo-full { display: none; }
  .stat-number { font-size: 26px; }
}
