.services-body {
  background: #f4f1ea;
}

.services-header {
  position: relative;
  background: #3f4f2f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-header .header-content {
  height: 78px;
  transform: none;
}

.services-header .brand-logo-white {
  width: 178px;
  max-height: 44px;
  object-fit: contain;
}

.services-hero {
  padding: 40px 0 28px;
  text-align: center;
}

.services-hero-inner {
  max-width: 760px;
}

.services-eyebrow {
  color: #b08a4f;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.services-hero h1 {
  color: #15355a;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: 0;
  margin-bottom: 8px;
}

.services-hero p {
  color: #4c5a52;
  line-height: 1.5;
}

.services-section {
  padding: 14px 0 46px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(63, 79, 47, 0.08);
}

.service-detail {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 26px;
  padding: 42px 44px;
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(63, 79, 47, 0.08);
}

.service-detail:nth-child(4n + 3),
.service-detail:nth-child(4n + 4) {
  background: rgba(245, 242, 235, 0.8);
}

.service-detail:nth-child(odd) {
  border-right: 1px solid rgba(63, 79, 47, 0.08);
}

.service-icon {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(63, 79, 47, 0.14);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.46);
}

.service-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #15355a;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail:nth-child(even) .service-icon svg,
.service-highlight .service-icon svg {
  stroke: #b08a4f;
}

.service-detail h2 {
  color: #15355a;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.service-detail p {
  color: #344239;
  font-size: 0.95rem;
  line-height: 1.62;
  margin-bottom: 14px;
}

.service-detail ul {
  margin: 0;
  padding-left: 18px;
  color: #5a655d;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.services-cta {
  padding: 0 0 72px;
}

.services-cta-inner {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #082b4d, #15355a 52%, #3f4f2f);
  color: #fff;
}

.cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 2px solid #b08a4f;
  display: grid;
  place-items: center;
}

.cta-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #b08a4f;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-cta h2 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  margin-bottom: 6px;
  letter-spacing: 0;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  background: #c49a4d;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.services-body .site-footer {
  padding-top: 5rem;
  padding-bottom: 3.8rem;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    border-right: 0 !important;
  }

  .services-cta-inner {
    grid-template-columns: 80px 1fr;
  }

  .services-cta-button {
    grid-column: 1 / -1;
    width: max-content;
  }
}

@media (max-width: 640px) {
  .services-header .brand-logo-white {
    width: 150px;
    max-height: 38px;
  }

  .services-hero {
    padding: 28px 0 20px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 18px;
  }

  .service-icon {
    width: 92px;
    height: 92px;
  }

  .service-icon svg {
    width: 48px;
    height: 48px;
  }

  .services-cta-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .services-cta-button {
    width: 100%;
  }
}
