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

:root {
  --primary: #0a3d6b;
  --primary-dark: #072d50;
  --orange: #e07b20;
  --orange-light: #f0a050;
  --text: #1E1E1E;
  --white: #ffffff;
  --light-gray: #eeeeee;
  --dark-gray: #4E4E4E;
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 16px; }

/* ── HEADER ── */
.top-header {
  background: var(--white);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo img { height: 70px; width: auto; display: block; }
.header-phone { text-align: right; line-height: 1.3; }
.header-phone .call-label { display: block; color: var(--text); font-size: 1rem; font-weight: 300; }
.header-phone a { display: block; color: var(--primary); font-size: 1.5rem; font-weight: 700; }
.header-phone a:hover { color: var(--orange); }

/* ── NAV ── */
.nav-bar { background: var(--primary); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; list-style: none; }
.nav-links li { position: relative; }
.nav-links > li > a {
  display: block; color: var(--white); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 16px 22px; transition: background 0.2s;
}
.nav-links > li > a:hover { background: rgba(255,255,255,0.15); }

/* Dropdown sub-menu */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-dark);
  min-width: 220px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.nav-links .has-sub:hover .sub-menu { display: block; }
.nav-links .sub-menu li a {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.nav-links .sub-menu li a:hover { background: var(--orange); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 16px 20px; margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(7, 45, 80, 0.88);
  border-bottom: 5px solid var(--orange);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 40px;
  width: 100%;
}
.page-hero-content h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
}

/* ── CONTENT SECTION ── */
.content-section { padding: 70px 40px; background: var(--white); }
.content-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start;
}
.content-body h2 {
  font-family: 'Times New Roman', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--primary); text-transform: capitalize;
  margin: 36px 0 16px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 1.2rem; font-weight: 600;
  color: var(--primary); margin-bottom: 10px;
}
.content-body p.lead {
  font-size: 1.1rem; color: var(--dark-gray);
  line-height: 1.7; margin-bottom: 24px;
}
.content-body p { color: var(--dark-gray); line-height: 1.7; font-size: 1rem; }

/* Info cards */
.info-card {
  background: var(--light-gray);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 24px;
}
.info-card h3 { color: var(--primary); font-size: 1.25rem; margin-bottom: 10px; }
.info-card p { margin-bottom: 16px; }

/* Lists */
.styled-list { list-style: none; margin: 16px 0 24px; }
.styled-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(224,123,32,0.15);
  color: var(--dark-gray);
  font-size: 1rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.helpful-links { list-style: none; margin-top: 12px; }
.helpful-links li { margin-bottom: 8px; }
.helpful-links li a { color: var(--primary); font-weight: 600; font-size: 1rem; }
.helpful-links li a:hover { color: var(--orange); }

/* ── BUTTONS ── */
.btn-pill {
  display: inline-block;
  background: var(--primary); color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px; padding: 12px 24px;
  font-weight: 500; font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-pill:hover { background: var(--orange); transform: translateY(-1px); }
.btn-orange { background: var(--orange) !important; border-color: var(--white) !important; }
.btn-orange:hover { background: #c96a10 !important; }
.btn-white { background: transparent !important; color: var(--white) !important; border: 2px solid var(--white) !important; }
.btn-white:hover { background: rgba(255,255,255,0.15) !important; }

/* ── SIDEBAR ── */
.content-sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--light-gray);
  border-radius: 8px; padding: 28px;
  text-align: center;
  border-top: 4px solid var(--orange);
}
.sidebar-card img {
  width: 140px; height: 140px;
  border-radius: 50%; object-fit: cover; object-position: top;
  margin: 0 auto 16px;
  border: 4px solid var(--orange);
  display: block;
}
.sidebar-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.sidebar-card p { color: var(--dark-gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--primary);
  padding: 60px 40px;
  text-align: center;
}
.cta-band-inner { max-width: 800px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Times New Roman', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--white); margin-bottom: 28px;
}

/* ── FOOTER ── */
footer { background: #a3a2a5; padding: 50px 40px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start;
}
.footer-logo img { height: 60px; width: auto; }
.footer-logo + p { color: var(--text); font-size: 0.9rem; margin-top: 10px; }
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 6px; }
.footer-nav ul li a { color: var(--text); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-nav ul li a:hover { color: var(--primary); }
.footer-contact p { color: var(--text); font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a { color: var(--primary); font-weight: 600; }
.footer-bottom { background: #6b6b6d; padding: 16px 40px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.8); font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content-inner { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .top-header { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; }
  .header-phone { text-align: center; }
  .content-section, .cta-band { padding: 40px 20px; }
  .page-hero-content { padding: 30px 20px; }
  .page-hero-content h1 { font-size: 2rem; }
  footer { padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; }
  .nav-toggle { display: flex; flex-direction: column; }
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links .sub-menu { position: static; display: none; }
  .nav-links .has-sub.open .sub-menu { display: block; }
  .nav-inner { flex-wrap: wrap; justify-content: flex-end; }
}
