/* Layout comes from .container-1000.py-5 (shared.css + Bootstrap) */
.services-page {
  /* no max-width, no margin auto, no padding, no font-size bump */
  line-height: 1.7;
}

/* Page-specific heading sizes (optional overrides) */
.services-page h1 {
  font-size: 32px;
  margin-bottom: 0.75rem;
}
.services-page h2 {
  font-size: 26px;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.services-page h3 {
  font-size: 20px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Blocks & lists */
.services-page section {
  margin-bottom: 2rem;
}
.services-page ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

/* Links */
.services-page a {
  text-underline-offset: 2px;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .services-page h1 {
    font-size: 28px;
  }
  .services-page h2 {
    font-size: 22px;
  }
  .services-page h3 {
    font-size: 18px;
  }
}

/* === BRAND CTA BUTTON (CORRECT ORANGE) === */
.cta-orange,
a.cta-orange,
.btn.cta-orange {
  background-color: #fb5924; /* YOUR brand */
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

/* Hover state: same orange, slightly darker based on #FB5924 */
.cta-orange:hover,
a.cta-orange:hover,
.btn.cta-orange:hover {
  background-color: #e45020; /* Darkened from YOUR brand */
  transform: translateY(-2px);
}

/* Click/pressed state: slightly darker again */
.cta-orange:active,
a.cta-orange:active,
.btn.cta-orange:active {
  background-color: #c34119;
  transform: translateY(0);
}

