
    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      line-height: 1.6;
      color: #1f2937; /* text-gray-800 */
      background-color: #fff;
    }

    /* Container */
    .container {
      max-width: 768px; /* max-w-3xl */
      margin: 0 auto;
      padding: 48px 24px; /* py-12 px-6 */
    }

    /* Title */
    h1 {
      font-size: 1.875rem; /* text-3xl */
      font-weight: 700; /* font-bold */
      margin-bottom: 1rem;
      text-align: center;
      color: var(--primary); /* text-pink-600 */
    }

    /* Last Updated */
    .last-updated {
      font-size: 0.875rem; /* text-sm */
      color: #6b7280; /* text-gray-500 */
      text-align: center;
      margin-bottom: 2.5rem;
    }

    /* Paragraphs */
    p {
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    /* Sections */
    section {
      margin-bottom: 1.5rem;
    }

    h2 {
      font-size: 1.25rem; /* text-xl */
      font-weight: 600; /* font-semibold */
      margin-bottom: 0.5rem;
      color: #1f2937;
    }

    ul {
      list-style-type: disc;
      margin-left: 1.5rem;
      margin-top: 0.5rem;
    }

    li {
      margin-bottom: 0.25rem;
    }

    /* Links */
    a {
      color: var(--primary);/* text-pink-600 */
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Strong with colors */
    .text-red {
      color: var(--primary); /* text-red-600 */
      font-weight: 600;
    }

    .text-green {
      color: #16a34a; /* text-green-600 */
      font-weight: 600;
    }

    /* Contact Info */
    .contact-info br {
      display: block;
      margin: 0.5rem 0;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .container {
        padding: 32px 16px;
      }

      h1 {
        font-size: 1.75rem;
      }

      h2 {
        font-size: 1.125rem;
      }
    }


/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
  #banner-1014 {
    padding: 0 1rem;
    /* 160px - 245px */
    padding-top: clamp(10rem, 25vw, 15.3125rem);
    padding-bottom: 7.5rem;
    background-color: #000;
    position: relative;
    z-index: 1;
  }
  #banner-1014 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #banner-1014 .cs-picture {
    width: 100%;
    margin: 0 0 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
  #banner-1014 .cs-picture:before {
    /* left line */
    content: "";
    width: 50%;
    max-width: 9.375rem;
    height: 1px;
  
    opacity: 1;
    position: relative;
    display: block;
  }
  #banner-1014 .cs-picture:after {
    /* right line */
    content: "";
    width: 50%;
    max-width: 9.375rem;
    height: 1px;
   
    opacity: 1;
    position: relative;
    display: block;
  }
  #banner-1014 .cs-icon {
    width: 40%;
    /* 100px - 180px */
    max-width: clamp(6.25rem, 18vw, 11.25rem);
    height: auto;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #banner-1014 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.5vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColorWhite);
    position: relative;
    top: -5rem;
    
  }
  #banner-1014 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #banner-1014 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 100;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
 
  #banner-1014 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center -5rem;
  }
}


/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2371 {
    padding: var(--sectionPadding);
    background-color: #FBF9F5;
  }
  #services-2371 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2371 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #services-2371 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
    /* 80px - 140px */
    padding-top: clamp(5rem, 10vw, 8.75rem);
    border-radius: 1rem;
    background-color: #fff;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #services-2371 .cs-icon {
    /* 80px - 120px */
    height: clamp(5rem, 9vw, 7.5rem);
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
  }
  #services-2371 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-2371 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #services-2371 .cs-item {
    grid-column: span 4;
  }
}