body {
    font-family: 'Roboto', sans-serif;
    background-color: #e2e2e2; /* Platinum */
    color: #202040; /* Space Cadet */
    margin: 0;
    padding: 0;
}

/* header (logo only) */
.site-header {
  background-color: #202040; /* Space Cadet - dark blue top banner */
  padding: 16px 20px;
  color: #e2e2e2; /* Platinum text for contrast */
  border-bottom: 4px solid #206090; /* Lapis lazuli accent */
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { /* simplified: only logo */
  display: flex;
  align-items: center;
}

/* If your logo is a dark file, invert it so it shows on the dark header.
   Remove the filter line if you use a light/logo variant instead. */
.brand .logo {
  filter: brightness(0) invert(1);
  height: 48px;
  width: auto;
  margin-right: 0;
}

/* hero (lower banner) adjustments: thinner and left-aligned nav buttons */
.hero {
  background-color: #206090; /* Lapis lazuli */
  color: #ffffff;
  padding: 10px 0; /* thinner banner */
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left align content */
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start; /* left align buttons */
  align-items: center;
}

/* remove button look and make nav links thinner */
.hero-buttons .nav-link {
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  padding: 6px 8px;           /* thinner spacing */
  margin: 0 6px 0 0;
  font-weight: 500;           /* medium (not bold) */
  font-size: 14px;
  border-radius: 6px;
  display: inline-block;
  border: none;
  box-shadow: none;
  transition: color .12s ease, background-color .12s ease, transform .12s ease;
}

.hero-buttons .nav-link:hover,
.hero-buttons .nav-link:focus {
  color: #e2e2e2;
  background-color: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* ensure any existing .btn rules don't apply inside the hero */
.hero-buttons .btn { display: none; }

/* nav link basics (applies to header and hero links) */
.main-nav .nav-link,
.hero-buttons .nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 6px 8px;
  margin: 0 8px 0 0;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: color .12s ease, background-color .12s ease, transform .12s ease;
  display: inline-block;
}

/* subtle hover */
.main-nav .nav-link:hover,
.hero-buttons .nav-link:hover,
.main-nav .nav-link:focus,
.hero-buttons .nav-link:focus {
  background-color: rgba(255,255,255,0.06);
  color: #ffffff;
  transform: translateY(-1px);
}

/* active / current page highlight */
.nav-link.active {
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  font-weight: 700;
  box-shadow: inset 0 -3px 0 rgba(32,96,144,0.18);
}

/* main page layout + cookie-cutter content styles */
.main-content .container {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 20px;
}

/* Lead / hero area on the homepage */
.lead {
  background: linear-gradient(180deg, rgba(32,96,144,0.06), transparent);
  padding: 36px 0 24px;
}
.lead-inner { max-width: 920px; margin: 0 auto; text-align: left; }
.lead-title { font-size: 32px; margin: 0 0 10px; color: #202040; font-weight: 700; }
.lead-dek { font-size: 18px; margin: 0 0 18px; color: rgba(32,32,64,0.9); }
.lead-cta .cta { margin-right: 12px; }
.muted { color: rgba(32,32,64,0.7); text-decoration: none; margin-left: 8px; }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 18px 0 24px; }
.feature { background: #ffffff; padding: 18px; border-radius: 8px; box-shadow: 0 6px 18px rgba(32,32,64,0.04); }
.feature h3 { margin: 0 0 8px; color: #202040; font-size: 18px; }
.feature p { margin: 0; color: rgba(32,32,64,0.85); }

/* Trust logos */
.trust { margin: 8px 0 24px; }
.trust h3 { margin: 0 0 10px; color: #202040; }
.trust-logos { display: flex; gap: 18px; align-items: center; }
.trust-logos img { height: 36px; opacity: 0.95; }


.section {
  padding: 18px 0;
  border-bottom: 1px solid rgba(32,96,144,0.06); /* subtle divider using lapis */
}

.section h2,
.section h3 {
  margin: 0 0 8px 0;
  color: #202040; /* Space Cadet */
  font-weight: 700;
}

.section p,
.section ul {
  margin: 0 0 12px 0;
  color: rgba(32,32,64,0.92);
  line-height: 1.5;
  font-weight: 400; /* cookie-cutter readable copy */
}

.section ul {
  padding-left: 20px;
}

.contact-cta .cta {
  display: inline-block;
  background-color: #206090; /* Lapis lazuli */
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
}

.contact-cta .cta:hover,
.contact-cta .cta:focus {
  background-color: #183f5a; /* slightly darker lapis on hover */
  transform: translateY(-1px);
}

/* responsive spacing */
@media (max-width: 640px) {
  .logo { height: 40px; filter: brightness(0) invert(1); }
  .hero { padding: 8px 0; }
  .hero-inner { justify-content: flex-start; }
  .btn { padding: 9px 12px; font-size: 14px; }
  .hero-buttons .nav-link { padding: 6px 10px; font-size: 13px; }
  .main-content .container { margin: 18px auto; }
  .section { padding: 14px 0; }
  .contact-cta .cta { padding: 9px 12px; }
}