.about-page .container {
    max-width: auto;
    margin: 0 auto;
  }
  
 
  .about-deepdive {
    padding: 40px 0 80px;
  }
  
  .section-head {
    margin-bottom: 18px;
  }
  
  .service-card {
    border-radius: 16px;
    padding: 22px;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
  }
  
  .service-card__outcome {
    margin-top: 14px;
    opacity: 0.85;
  }
  
  .about-swiper {
    padding: 10px 6px 44px;
  }
  
  /* Animations */
  .service-slide .service-card {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 420ms ease, transform 520ms ease;
    will-change: opacity, transform;
  }
  
  .service-slide--left .service-card {
    transform: translateX(-44px);
  }
  
  .service-slide--right .service-card {
    transform: translateX(44px);
  }
  
  .service-slide.is-visible .service-card {
    opacity: 1;
    transform: translateX(0);
  }
  
  @media (max-width: 900px) {
    .about-hero {
      padding: 5em 0 5em 0;
      background-attachment: scroll, scroll;
    }
  
    .about-hero__grid {
      grid-template-columns: 1fr;
    }
  
    .about-hero h1 {
      font-size: 2.4em;
    }
  }

 /* About banner form should be light like the homepage */
#banner.about-hero .about-hero__form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 18px;
  }
  
  /* Banner forces headings white, override inside the form panel */
  #banner.about-hero .about-hero__form,
  #banner.about-hero .about-hero__form h2,
  #banner.about-hero .about-hero__form h3,
  #banner.about-hero .about-hero__form label,
  #banner.about-hero .about-hero__form p {
    color: #666;
  }
  
  /* Inputs inside the light form panel */
  #banner.about-hero .about-hero__form input[type="text"],
  #banner.about-hero .about-hero__form input[type="email"],
  #banner.about-hero .about-hero__form input[type="tel"],
  #banner.about-hero .about-hero__form textarea {
    background: #fff;
    color: #666;
    box-shadow: inset 0 0 0 2px #dddddd;
  }

  /* Make the list match the homepage style */
#banner.about-hero .about-hero__bullets {
    list-style: none;
    margin: 1.5em 0 0 0;
    padding: 0;
    text-align: left;
    max-width: 520px;
  }
  
  #banner.about-hero .about-hero__bullets li {
    padding: 0.75em 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  #banner.about-hero .about-hero__bullets li:first-child {
    border-top: 0;
  }
  
  
  
  /* About banner list: match homepage spacing and rule length */
#banner.about-hero ul.alt.hero-points {
    margin-top: 1.75em;
  }
  
  /* control the list item spacing */
  #banner.about-hero ul.alt.hero-points li {
    padding: 0.85em 0;
  }
  
  /* control the divider line length */
  #banner.about-hero ul.alt.hero-points li:before {
    width: 60%;
    margin: 0.65em auto 0 auto;
    opacity: 0.35;
  }
  /* Make the paragraph + list share the same column width */
#banner .hero-left p,
#banner .hero-left ul.hero-points {
  max-width: 34em;    
  margin-left: auto;
  margin-right: auto;
}

/* Remove the default UL indent that causes the misalignment */
#banner .hero-left ul.hero-points {
  padding-left: 0;
  list-style: none;
}

/* Remove any LI indent too */
#banner .hero-left ul.hero-points li {
  padding-left: 0;
}
