* {
      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;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    main {
      flex: 1;
    }

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

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

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

    p {
      margin-bottom: 1.5rem;
    }

    section {
      margin-bottom: 1.5rem;
    }

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

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

    li {
      margin-bottom: 0.25rem;
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    strong {
      font-weight: 600;
    }

    .contact-info br {
      display: block;
      margin: 0.5rem 0;
    }

    /* Responsive */
    @media (min-width: 640px) {
      .container {
        padding: 48px 24px; /* py-12 px-6 */
      }
    }


/*-- -------------------------- -->
<---          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 20%;
  }
}