:root {
  --deep-blue: #343A78;
  --ink-blue: #1d2361;
  --orange: #F58220;
  --brown: #4A2A16;
  --panel: #F6F4EA;
  --line: #D9D2C4;
  --white: #FFFFFF;
  --text: #26211d;
}
body {
  background: var(--panel);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
a { color: var(--deep-blue); }
a:hover { color: var(--orange); }
h1, h2, h3 {
  color: var(--deep-blue);
  font-family: "PT Sans Caption", Inter, sans-serif;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.12; }
h2 { font-size: 1.7rem; margin-top: 2rem; }
h3 { font-size: 1.2rem; margin-top: 1.4rem; }
img { max-width: 100%; height: auto; }
.inline-cell-image { max-height: 24px; width: auto; vertical-align: middle; margin: 0 .25rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--deep-blue);
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 74px;
}
.brand { color: var(--white); text-decoration: none; display: flex; flex-direction: column; }
.brand-mark { font-size: 1.8rem; font-weight: 800; letter-spacing: 0; }
.brand small { color: rgba(255,255,255,.82); font-size: .78rem; }
.primary-nav { display: flex; align-items: center; gap: .35rem 1rem; flex-wrap: wrap; }
.nav-item-wrap { position: relative; }
.primary-nav a {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  padding: .5rem .35rem;
  text-decoration: none;
}
.nav-dropdown {
  display: none;
  position: absolute;
  min-width: 240px;
  padding: .75rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.nav-dropdown a { color: var(--brown); padding: .35rem .25rem; }
.nav-item-wrap:hover .nav-dropdown { display: block; }
.header-cta, .button.primary {
  background: var(--orange);
  color: var(--brown);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}
.header-cta { padding: .75rem 1rem; white-space: nowrap; }
.button.secondary {
  background: var(--white);
  color: var(--deep-blue);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}
.hero {
  background: linear-gradient(135deg, var(--deep-blue), var(--ink-blue));
  color: var(--white);
  padding: 4rem 0;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 2rem; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 680px; }
.eyebrow {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-panel {
  background: var(--white);
  border-top: 5px solid var(--orange);
  border-radius: 6px;
  padding: 1.5rem;
  color: var(--text);
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.country-grid a, .service-sidebar a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .75rem;
  background: var(--panel);
  text-decoration: none;
  font-weight: 700;
}
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
}
.page-body { padding: 2rem 0 3rem; }
.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
}
.service-sidebar h2 { font-size: 1.1rem; margin: 0 0 1rem; }
.service-sidebar nav { display: grid; gap: .45rem; }
.service-sidebar a { background: var(--panel); color: var(--brown); font-size: .92rem; }
.service-sidebar .child-link { margin-left: .75rem; padding: .5rem .65rem; font-size: .84rem; background: var(--white); }
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1rem, 3vw, 2rem);
}
.readable { max-width: 880px; }
.lead { color: #5d5149; font-size: 1.08rem; }
.date-line { color: #74685e; font-size: .9rem; }
.content-image, .gallery-grid figure {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .65rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.listing-card {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 4px;
  padding: 1rem;
  background: var(--panel);
  margin: 1rem 0;
}
.table-scroll { overflow-x: auto; margin: 1.25rem 0; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--deep-blue); color: var(--white); }
th, td { border: 1px solid var(--line); padding: .65rem; vertical-align: top; }
.main-image { float: right; max-width: 34%; margin: .25rem 0 1rem 1.5rem; border-radius: 4px; }
.clear { clear: both; }
.site-footer {
  background: var(--ink-blue);
  color: var(--white);
  padding: 2rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 2rem;
  align-items: start;
}
.footer-inner p { margin: .35rem 0 0; color: rgba(255,255,255,.8); }
.footer-links { display: flex; gap: .8rem 1.25rem; flex-wrap: wrap; }
.footer-links a { color: var(--white); font-weight: 700; text-decoration: none; }
.breadcrumbs-wrap { margin-bottom: 1rem; font-size: .9rem; }
.toc { display: flex; flex-wrap: wrap; gap: .75rem; padding: 1rem; background: var(--panel); }
@media (max-width: 900px) {
  .header-inner, .hero-grid, .layout, .footer-inner { grid-template-columns: 1fr; }
  .primary-nav { order: 3; }
  .service-sidebar { position: static; }
  .main-image { float: none; max-width: 100%; margin: 1rem 0; }
}
@media print {
  .site-header, .site-footer, .service-sidebar { display: none; }
}
