@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --nav-blue: #00558c;
  --deep-blue: #004774;
  --link-blue: #0a4f8a;
  --mid-gray: #e6e6e6;
  --light-gray: #f5f5f5;
  --border: #d6d6d6;
  --maroon: #8a1d2f;
  --forest: #3f6126;
  --text: #1a1a1a;
}

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

body {
  margin: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--link-blue);
  font-weight: 700;
}

a:hover {
  color: var(--deep-blue);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.utility-bar {
  background: var(--mid-gray);
  color: #0f0f0f;
  font-size: 14px;
  border-bottom: 1px solid #d2d2d2;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 24px;
}

.utility-bar .usa-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: linear-gradient(90deg, #b22234 0 50%, #3c3b6e 50% 100%);
  margin-right: 8px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  line-height: 1.25;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search input {
  border: 1px solid var(--border);
  padding: 10px 12px;
  width: 240px;
  font-size: 15px;
  border-radius: 2px;
}

.search button {
  background: var(--nav-blue);
  border: 1px solid var(--nav-blue);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
}

.primary-nav {
  background: var(--nav-blue);
  border-top: 1px solid #00446d;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 16px 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}

.nav-links a.active {
  border-color: #f6f6f6;
}

.nav-links a:hover {
  color: #e9f3fb;
}

.breadcrumb {
  font-size: 14px;
  margin: 18px 0 8px;
}

.page-title {
  font-family: 'Merriweather', serif;
  font-size: 32px;
  margin: 0 0 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: none;
}

.hero.image {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 24px;
  min-height: 360px;
}

.hero .hero-content {
  background: rgba(0, 85, 140, 0.9) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: 4px;
}

.hero .hero-content h1,
.hero .hero-content h2,
.hero .hero-content h3,
.hero .hero-content p {
  color: #ffffff !important;
}

.hero .hero-content .btn {
  background: #ffffff;
  color: #00558c;
  border: 2px solid #ffffff;
}

.hero .hero-content .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 360px;
  height: 60vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  height: 100%;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.slide.active {
  opacity: 1;
}

.slide .hero-content {
  position: relative;
  z-index: 1;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.hero-dots button.active {
  background: #ffffff;
}

.hero-content {
  max-width: 540px;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 20px;
  font-size: 17px;
}

.hero .cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  background: var(--nav-blue);
  color: #ffffff;
  border: 2px solid var(--nav-blue);
  border-radius: 2px;
  cursor: pointer;
}

.btn:hover {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: var(--forest);
  border-color: var(--forest);
}

.section {
  padding: 48px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-family: 'Merriweather', serif;
  font-size: 28px;
}

.muted {
  color: #4d4d4d;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

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

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h3 {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-size: 20px;
}

.card-body p {
  margin: 0;
  color: #383838;
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 16px;
}

.news-meta {
  font-size: 14px;
  color: #505050;
  margin-bottom: 6px;
}

.info-box {
  border: 1px solid var(--border);
  padding: 20px;
  background: #ffffff;
}

.info-box h3 {
  margin-top: 0;
  font-family: 'Merriweather', serif;
  color: var(--maroon);
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--nav-blue);
  border: 1px solid #cfd8e0;
  font-weight: 700;
  font-size: 14px;
}

.stacked {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar .panel {
  border: 1px solid var(--border);
  padding: 16px;
  background: #ffffff;
}

.sidebar h4 {
  margin: 0 0 8px;
  font-family: 'Merriweather', serif;
}

.list-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-links li {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.social-strip {
  background: #eeeeee;
  padding: 16px 0;
}

.social-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cccccc;
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid #b8b8b8;
}

footer {
  background: #045b92;
  color: #ffffff;
}

.footer-inner {
  padding: 48px 24px;
}

.footer-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-header img {
  width: 52px;
  height: 52px;
}

.footer-header .footer-title {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-family: 'Merriweather', serif;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #eaf6ff;
  text-decoration: underline;
}

.footer-col a:hover {
  color: #ffffff;
}

.ntas {
  text-align: center;
  border: 1px solid #ffffff;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.ntas img {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 28px;
  font-size: 14px;
  text-align: center;
  color: #dfeefa;
}

.cta-section {
  border: 1px solid var(--border);
  padding: 24px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.highlight {
  font-style: italic;
  font-size: 18px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.maroon {
  color: var(--maroon);
}

.forest {
  color: var(--forest);
}

.bordered {
  border: 1px solid var(--border);
}

.return-top {
  margin: 24px 0 12px;
  font-weight: 700;
}

.placeholder-box {
  background: linear-gradient(135deg, #d8d8d8, #bcbcbc);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .search {
    width: 100%;
  }

  .search input {
    width: 100%;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
  }

  .nav-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 20px;
    min-height: 320px;
  }

  .hero.image {
    min-height: 320px;
  }

  .hero-slider {
    min-height: 360px;
    height: 70vh;
  }

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

  .utility-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
