:root {
  --navy: #08264a;
  --navy-2: #0d315c;
  --gold: #c99a2e;
  --gold-2: #d7b65e;
  --silver: #8f969d;
  --slate: #4c5864;
  --light: #f5f7fa;
  --white: #ffffff;
  --line: #dce2e8;
  --shadow: 0 18px 45px rgba(8, 38, 74, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 238px; height: 72px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: Arial, sans-serif; font-weight: 700; font-size: 0.92rem; }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(8,38,74,.18);
}
.menu-toggle { display: none; border: 0; background: var(--navy); color: white; padding: 10px 12px; border-radius: 4px; font-size: 1.2rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 44%, rgba(245,247,250,.70) 100%),
    radial-gradient(circle at 85% 30%, rgba(201,154,46,.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef2f6 100%);
  border-bottom: 3px solid var(--gold);
}
.hero::after {
  content: '';
  position: absolute;
  right: -7%; top: 8%;
  width: 56%; height: 90%;
  background: linear-gradient(135deg, transparent 0 44%, rgba(8,38,74,.05) 44% 48%, transparent 48% 100%);
  opacity: .9;
}
.hero-grid { position: relative; z-index: 1; min-height: 620px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.eyebrow, .section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 14px;
}
.eyebrow span { display: inline-block; width: 38px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
h1 { font-size: clamp(3rem, 7vw, 6.3rem); line-height: .94; margin: 0 0 24px; letter-spacing: -.04em; }
h1 span { color: var(--silver); }
.hero-text { max-width: 600px; font-family: Arial, sans-serif; color: #263646; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 24px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  border: 2px solid var(--navy);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--navy); color: white; }
.btn.secondary { background: transparent; color: var(--navy); }
.hero-card {
  justify-self: end;
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(201,154,46,.34);
  box-shadow: var(--shadow);
}
.hero-card img { width: 250px; margin: 0 auto 20px; }
.hero-card div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-family: Arial, sans-serif; }
.hero-card strong { border: 1px solid var(--line); padding: 12px; border-radius: 8px; text-align: center; background: #fff; }

.section { padding: 88px 0; }
.section-center { text-align: center; max-width: 760px; margin: 0 auto 42px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; margin: 0 0 18px; letter-spacing: -.025em; }
h3 { margin: 0 0 10px; line-height: 1.15; }
p { margin-top: 0; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.about-grid p, .section-center p { font-family: Arial, sans-serif; color: #364656; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.values-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 28px rgba(8,38,74,.06);
}
.values-grid span { font-family: Arial, sans-serif; font-weight: 900; color: var(--gold); }
.values-grid p, .service-card p, .government p, .contact p, .footer p, .footer span { font-family: Arial, sans-serif; color: #465666; }

.services { background: var(--light); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(8,38,74,.06);
  min-height: 220px;
}
.icon {
  width: 46px; height: 46px;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.government {
  padding: 76px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(8,38,74,.97), rgba(8,38,74,.87)),
    radial-gradient(circle at 85% 40%, rgba(201,154,46,.20), transparent 30%);
}
.light { color: var(--gold-2); }
.government h2 { max-width: 760px; }
.government p { color: rgba(255,255,255,.82); max-width: 720px; }
.government-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 40px; align-items: center; }
.gov-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gov-points span { font-family: Arial, sans-serif; font-weight: 800; border: 1px solid rgba(255,255,255,.22); padding: 16px; border-radius: 10px; background: rgba(255,255,255,.07); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 26px; font-family: Arial, sans-serif; font-weight: 800; }
.contact-list a { color: var(--navy); }
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  font-family: Arial, sans-serif;
}
label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); }
input, textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--navy);
}
input:focus, textarea:focus { outline: 3px solid rgba(201,154,46,.18); border-color: var(--gold); }
.form-note { font-size: .86rem; margin: 0; }

.footer { background: var(--navy); color: white; padding: 46px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .8fr; gap: 40px; align-items: start; }
.footer img { width: 230px; background: white; border-radius: 8px; padding: 6px; margin-bottom: 14px; }
.footer h4 { font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-2); margin: 0 0 12px; }
.footer a, .footer span { display: block; margin: 8px 0; color: rgba(255,255,255,.88); font-family: Arial, sans-serif; }
.copyright { border-top: 1px solid rgba(255,255,255,.18); margin-top: 28px; padding-top: 16px; font-family: Arial, sans-serif; color: rgba(255,255,255,.72); font-size: .88rem; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 82px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-cta { text-align: center; padding: 12px; }
  .hero-grid, .about-grid, .government-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 78px 0; }
  .hero-card { justify-self: stretch; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 190px; }
  h1 { font-size: 3.25rem; }
  .section { padding: 64px 0; }
  .service-grid, .values-grid, .gov-points { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
