:root {
  --navy: #0e243d;
  --blue: #1d5f99;
  --blue-dark: #174d7d;
  --steel: #66788a;
  --gray: #f3f6f9;
  --gray-2: #e6edf3;
  --white: #ffffff;
  --text: #1f2d3a;
  --muted: #5d6b78;
  --border: #d6e0ea;
  --gold: #b68b3d;
  --shadow: 0 18px 45px rgba(14, 36, 61, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: .9rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar p { margin: 0; color: #d8e3ed; }
.topbar a { color: #ffffff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: var(--steel); margin-top: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: .95rem;
}

.nav a { color: var(--navy); font-weight: 700; }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
}

.hero {
  color: white;
  background:
    linear-gradient(120deg, rgba(14,36,61,.96), rgba(29,95,153,.88)),
    linear-gradient(45deg, rgba(255,255,255,.12), transparent);
  padding: 98px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: .78rem;
}

.hero .eyebrow { color: #d7e7f5; }

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

.hero h1 {
  color: white;
  font-size: clamp(2.55rem, 5.5vw, 5rem);
  margin-bottom: 24px;
  max-width: 850px;
}

h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }

.lead {
  color: #e7eff7;
  font-size: 1.22rem;
  max-width: 760px;
}

.hero-actions, .page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.button:hover { text-decoration: none; }

.button.primary { background: var(--blue); color: white; }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { color: white; border-color: rgba(255,255,255,.75); }

.hero-panel {
  background: white;
  color: var(--text);
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.hero-panel h2 { font-size: 1.75rem; }
.hero-panel ul { padding-left: 20px; margin: 18px 0; }
.hero-panel li { margin-bottom: 8px; }
.panel-note { color: var(--muted); font-style: italic; }

.section { padding: 84px 0; }

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

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  padding: 28px;
  min-height: 265px;
  box-shadow: 0 10px 28px rgba(14,36,61,.06);
}

.card h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-2);
}

.card a {
  display: inline-block;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.bio-feature {
  background: linear-gradient(180deg, white, var(--gray));
}

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.credential-box, .sidebar-box {
  background: var(--navy);
  color: white;
  padding: 34px;
  box-shadow: var(--shadow);
}

.credential-box h3, .sidebar-box h3 { color: white; }

.check-list {
  padding-left: 20px;
}

.check-list li { margin-bottom: 12px; }

.locations {
  background: var(--navy);
  color: white;
}

.locations h2 { color: white; }
.locations .eyebrow { color: #cfe1f2; }
.locations p { color: #d7e3ed; }

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

.cta-card {
  background: white;
  border: 1px solid var(--border);
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow);
}

.cta-card h2 { margin-bottom: 10px; }
.cta-card p { margin-bottom: 0; }

.page-hero {
  background: var(--navy);
  color: white;
  padding: 74px 0;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: #d9e5ef;
  max-width: 760px;
  font-size: 1.15rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr .38fr;
  gap: 44px;
  align-items: start;
}

.content-card {
  background: white;
  border: 1px solid var(--border);
  padding: 34px;
  margin-bottom: 24px;
}

.content-card h2 { font-size: 2rem; }

.sidebar-box {
  position: sticky;
  top: 120px;
}

.sidebar-box a { color: white; text-decoration: underline; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item h3 { margin-bottom: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  font-family: Arial, sans-serif;
}

textarea { resize: vertical; }

.site-footer {
  background: #081827;
  color: white;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
}

.site-footer p, .site-footer a {
  color: #d9e5ef;
}

.disclaimer { font-size: .9rem; margin-top: 0; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .intro-grid, .split, .content-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .sidebar-box { position: static; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .nav-container { min-height: auto; padding: 16px 0; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text strong { font-size: .95rem; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  .section { padding: 62px 0; }
}
