#services-page {
    /* max-width: 1200px; */
    /* padding: 32px 16px 48px; */
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .services-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #f15a29;;
    padding-bottom: 16px;
  }
  .services-header h1{
      color:#f15a29;
  }
  .services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
  }

  .services-subtitle {
    font-size: 1rem;
    color: #f15a29;
  }

  .services-tagline {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #4b5563;
  }

  .services-section {
    margin-top: 32px;
  }

  .services-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f15a29;
    margin-bottom: 8px;
  }

  .services-section p.section-lead {
    font-size: 0.98rem;
    color: black;
    margin-bottom: 16px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
  }

  .services-card {
    flex: 1;
    padding: 18px 20px;
    background: linear-gradient(rgba(255, 252, 250, 0.8), rgba(247, 215, 196, 0.8)),
        url("../img/background.webp") fixed center center;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.324);
    height: 100%;
  }

  .services-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #f15a29;
  }

  .services-card p {
    font-size: 0.95rem;
    color: black;
    margin-bottom: 8px;
  }

  .services-card ul {
    list-style: disc;
    padding-left: 18px;
    margin-top: 4px;
  }

  .services-card li {
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: black;
  }

  .services-image {
    border-radius: 8px;
    height: 100%;
    width: auto;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.324);
    background: white;
  }

  .services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .cert-card {
    background: linear-gradient(rgba(255, 252, 250, 0.8), rgba(247, 215, 196, 0.8)),
        url("../img/background.webp") fixed center center;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  }

  .cert-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #f15a29;
    margin-bottom: 4px;
  }

  .cert-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #111827;
  }

  .cert-card p {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 6px;
  }

  .cert-card ul {
    list-style: disc;
    padding-left: 18px;
    margin-top: 4px;
  }

  .cert-card li {
    font-size: 0.88rem;
    color: black;
    margin-bottom: 4px;
  }

  .highlight-strip {
    margin-top: 36px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f15a29;
    color: white;
    font-size: 0.9rem;
  }

  .dispensers-section{
    width: 100%;
  }
  .dispensers-fullwidth-image {
    width: 100%;
    margin: 32px 0;
  }

  .dispensers-fullwidth-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  @media (max-width: 900px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    .services-page {
      padding: 24px 12px 32px;
    }
  }