/*
 * shared styling for service detail sections that appear below
 * parallax hero images on service pages.
 */
.service_section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.service_section_grid > div,
.service_section_stack .service_card {
  border: 1px solid #dcfce7;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service_section_grid > div:hover,
.service_section_stack .service_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.service_section_grid h2,
.service_section_stack h2 {
  color: #14532d;
}

.service_section_grid a,
.service_section_stack a {
  text-underline-offset: 3px;
}
