/* =======================
   Global Reset & Base
   ======================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  background:#fff; color:#000;
}
img { display: block; }
.container { max-width: 1100px; margin: 24px auto; padding: 0 20px; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Page content grows; footer stays at bottom */
main { flex: 1 0 auto; }

/* =======================
   Navbar
   ======================= */
.navbar {
  width: 100%;
  background: #0047ab;
  padding: 12px 20px;
  position: sticky;   /* stays at top on scroll */
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo { max-height: 72px; height: auto; }
@media (max-width: 768px) { .logo { max-height: 56px; } }

/* Kill any decorative pseudo-elements leaking onto logos */
.logo::before, .logo::after { content: none !important; }

/* Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.navbar .nav-links a { text-transform: uppercase; }

.nav-links li { position: relative; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #ffcc00; }
.nav-links a:hover::after { width: 100%; }

/* Strong keyboard focus */
.nav-links a:focus-visible,
.burger:focus-visible {
  outline: 2px solid #ffcc00;
  outline-offset: 3px;
  border-radius: 4px;
}
.breadcrumbs {
  font-size: 14px;
  margin: 10px 20px;
  color: #666;
}

.breadcrumbs a {
  color: #004aad;  /* or gray */
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 6px;
}

.breadcrumbs li::after {
  content: "›";
  margin-left: 6px;
  color: #aaa;
}

.breadcrumbs li:last-child::after {
  content: "";
}

/* Burger */
.burger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Desktop: keep burger hidden */
@media (min-width: 769px) { .burger { display: none !important; } }

/* =======================
   Mob
