:root {
  --blue: #0046c8;
  --green: #00bd00;
  --soft-blue: #edf4fb;
  --panel-blue: #f2f7fc;
  --ink: #1e355f;
  --text: #2b3f5f;
  --line: #c6d6eb;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(33, 55, 94, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: #ececec;
  color: var(--text);
}

img { max-width: 100%; display: block; }

.page-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 40px auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5ebf2;
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.section-blue {
  background: linear-gradient(180deg, #eef5fb 0%, #f6f9fc 100%);
}

.hero {
  padding: 56px 0 24px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 28px;
}

.section-title span {
  flex: 1 1 140px;
  max-width: 220px;
  height: 1px;
  background: var(--line);
}

.section-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.2;
}

.services {
  padding: 16px 0 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 26px 18px;
  align-items: start;
}

.service-card {
  text-align: center;
}

.service-card img {
  margin: 0 auto 10px;
  height: 68px;
  width: auto;
  object-fit: contain;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 700;
}

.certifications {
  padding: 34px 0 38px;
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-top: 8px;
}

.cert-card {
  min-height: 94px;
  display: grid;
  place-items: center;
}

.cert-card img {
  max-height: 78px;
  width: auto;
}

.cert-copy {
  text-align: center;
  margin: 18px 0 0;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 500;
}

.benefits {
  background: #f3f7fb;
  padding: 44px 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid #d8e3f0;
  border-radius: 6px;
  text-align: center;
  padding: 24px 20px 22px;
}

.benefit-card img {
  margin: 0 auto 16px;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.15rem;
}

.benefit-card p {
  margin: 0;
  line-height: 1.65;
}

.who-we-serve {
  padding: 34px 0 38px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 34px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink);
  font-weight: 600;
}

.service-areas {
  padding: 34px 0 46px;
  background: var(--white);
}

.area-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--panel-blue);
  border: 1px solid #d5e0ee;
  text-align: center;
  padding: 26px 28px;
  border-radius: 4px;
  line-height: 1.75;
  font-size: 1rem;
}

.area-box p {
  margin: 0 0 10px;
}

.area-box p:last-child {
  margin-bottom: 0;
}

.announce {
  font-weight: bold;
  color: var(--green);
  padding: 15px 0px 0px 0px;
}

.site-footer {
  background: #eaf1f8;
  border-top: 1px solid #d8e2ef;
  padding: 28px 0 34px;
  text-align: center;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 14px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--ink);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100%, calc(100% - 20px));
    margin: 10px auto;
  }

  .container {
    width: min(100%, calc(100% - 28px));
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .main-nav {
    justify-content: center;
    gap: 18px 22px;
  }

  .hero {
    padding-top: 42px;
  }

  .services-grid,
  .benefit-grid,
  .cert-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    gap: 12px;
  }

  .section-title span {
    flex-basis: 40px;
  }
}
