.service-page {
  background: #f6f7f2;
  color: #1f241f;
}

.service-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101510;
}

.service-hero__media {
  position: absolute;
  inset: 0;
}

.service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 14, 10, .88), rgba(9, 14, 10, .58) 44%, rgba(9, 14, 10, .18));
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 88px;
  color: #fff;
}

.service-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  background: #1b3e96;
  color: #f4c542;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .78rem;
  margin-bottom: 18px;
}

.service-hero h1 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.03;
  margin: 0 0 22px;
}

.service-intro {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .88);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.service-btn:hover {
  transform: translateY(-1px);
}

.service-btn--primary {
  background: #25d366;
  color: #0b2314;
}

.service-btn--secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}

.service-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.service-main {
  display: grid;
  gap: 22px;
}

.service-block,
.service-panel {
  background: #fff;
  border: 1px solid rgba(27, 62, 150, .10);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(20, 26, 18, .06);
}

.service-block {
  border-top: 4px solid #1b3e96;
}

.service-block h2,
.service-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #1d291b;
  line-height: 1.1;
}

.service-block h2::after,
.service-panel h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: #f4c542;
  border-radius: 999px;
}

.service-block p,
.service-panel p {
  color: #4c554b;
  line-height: 1.8;
  margin: 0 0 16px;
}

.service-checklist,
.service-zones {
  display: grid;
  gap: 12px;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344034;
  line-height: 1.6;
}

.service-checklist i {
  color: #f4c542;
  margin-top: 4px;
}

.service-faq {
  display: grid;
  gap: 14px;
}

.service-faq article {
  border-top: 1px solid rgba(23, 31, 18, .1);
  padding-top: 16px;
}

.service-faq h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.service-zones li {
  padding: 10px 12px;
  border-radius: 6px;
  background: #f4f6ef;
  color: #354033;
  font-weight: 700;
}

.service-panel--cta {
  background: #1b3e96;
  color: #fff;
  border-left: 6px solid #f4c542;
}

.service-panel--cta h2,
.service-panel--cta p {
  color: #fff;
}

.service-related {
  display: grid;
  gap: 10px;
}

.service-related a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(27, 62, 150, .12);
  border-radius: 6px;
  color: #1d291b;
  font-weight: 800;
  background: #fdfdfc;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.service-related a:hover,
.service-related a:focus {
  border-color: #1b3e96;
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

.service-link {
  display: inline-block;
  margin-bottom: 10px;
  color: #1b3e96;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
}

.service-link:hover,
.service-link:focus {
  color: #f4c542;
  outline: none;
}

@media (max-width: 900px) {
  .service-content {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .service-hero__content,
  .service-content {
    width: min(100% - 28px, 1180px);
  }

  .service-hero__content {
    padding-bottom: 56px;
  }

  .service-block,
  .service-panel {
    padding: 22px;
  }
}
