* {
  box-sizing: border-box;
}

:root {
  --navy: #003b5c;
  --navy-deep: #002f4a;
  --green: #4a8b57;
  --text: #454545;
  --muted: #666;
  --line: #d7dfe3;
  --tint: #f4f7f8;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 54px 0;
}

.section-tint {
  background: var(--tint);
}

.hero {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.hero img {
  width: 100%;
  height: auto;
}

h1,
.section-title,
.feature h2,
.service-card h2,
.mini-feature h3 {
  color: var(--navy);
}

h1,
.section-title {
  font-family: "Merriweather", Georgia, serif;
}

h1 {
  margin: 0 0 42px;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.22;
  text-align: center;
  font-weight: 700;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  line-height: 1.2;
}

.feature-grid {
  display: grid;
  gap: 26px;
}

.feature-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  text-align: center;
  padding: 10px 12px;
}

.icon {
  color: var(--green);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 16px;
}

.feature h2,
.service-card h2 {
  margin: 0 0 10px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.feature p,
.service-card p,
.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.about-copy p {
  margin: 0 0 18px;
  font-size: 1.06rem;
}

.about-features {
  display: grid;
  gap: 24px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.mini-feature .icon {
  font-size: 1.9rem;
  margin: 3px 0 0;
  text-align: center;
}

.mini-feature h3 {
  margin: 0 0 7px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.18rem;
}

.leadership-graphic {
  padding-top: 44px;
  padding-bottom: 20px;
}

.leadership-graphic img {
  width: 100%;
  border-radius: 8px;
}

.services {
  padding-top: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 225px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-card .icon {
  font-size: 1.85rem;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  margin: 7px 0;
}

.contact-box .organization {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.08rem;
}

.legal-image {
  width: 100%;
  background: var(--navy);
}

.legal-image img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  padding: 17px 20px;
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .feature-grid-four,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 40px 0;
  }

  .feature-grid-four,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .hero {
    overflow-x: auto;
  }

  .hero img {
    min-width: 760px;
    max-width: none;
  }

  .leadership-graphic {
    overflow-x: auto;
  }

  .leadership-graphic img {
    min-width: 730px;
    max-width: none;
  }

  .legal-image {
    overflow-x: auto;
  }

  .legal-image img {
    min-width: 780px;
    max-width: none;
  }
}
