/* Behave like .sticky ALL the time on services pages */
:is(.sticky-wrapper.sticky, .services-page .sticky-wrapper) {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  animation: stickyAni 0.4s ease-in-out;
  z-index: 9999; /* make sure it sits above content */
}

.services-page { 
  --header-h: 20px;           /* adjust if your header is taller/shorter */
  padding-top: var(--header-h);
}
