  /* Full-width Hero */
  :root {
    /* Desktop Gradient Overlay | Desktop Background Image */
    --hsd-mod-bhwc-desktop-bg: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0) 100%),
      url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=645399")
        no-repeat center;
    /* Mobile Gradient Overlay | Mobile Background Image */
    --hsd-mod-bhwc-mobile-bg: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.3) 100%),
      url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=645398")
        no-repeat center;

    /* Hero Styles */
    --hsd-mod-bhwc-hero-font-color: white;

    /* Adjust the position of the btns and body on mobile */
    /* switch from column to column-reverse if requested */
    --hsd-mod-bhwc-mobile-btn-body-position: column;
  }

  .hsd-mod-background-hero-w-content {
    width: 100%;

    height: auto;
    margin: 0 auto;
    padding: 5vw;

    background: var(--hsd-mod-bhwc-desktop-bg);
    background-size: cover;
  }
  .hsd-mod-bhwc-content-cont {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    gap: 24px;

    max-width: 1440px;
    margin: 0 auto;
  }
  .hsd-mod-bhwc-body-btn-cont {
    display: flex;
    flex-flow: column;
    gap: 12px;
    max-width: 38vw;

    color: var(--hsd-mod-bhwc-hero-font-color) !important;
    font-size: 16px !important;
  }
  .hsd-mod-bhwc-body-btn-cont .row a {
    width: 100% !important;
  }

  .hsd-mod-bhwc-body-cont p:last-of-type {
    margin: 0 !important;
  }

  .hsd-mod-bhwc-content-cont h1 {
    display: flex;
    flex-flow: column;
    gap: 8px;
    margin: 12px 0 0;

    color: var(--hsd-mod-bhwc-hero-font-color) !important;
    font-size: 48px !important;
    line-height: 1.2;
  }
  .hsd-mod-bhwc-content-cont h1 span {
    margin: 0;
    font-size: 24px !important;
  }
  @media screen and (max-width: 850px) {
    .hsd-mod-bhwc-content-cont {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0;
    }
    .hsd-mod-bhwc-content-cont {
      max-width: 100%;

      color: var(--hsd-mod-bhwc-hero-font-color) !important;
      font-size: 16px !important;
      text-align: center;
    }
    .hsd-mod-bhwc-content-cont h1 span {
      display: block;
      font-size: 1.2rem !important;
    }
    .hsd-mod-bhwc-content-cont h1 {
      color: var(--hsd-mod-bhwc-hero-font-color) !important;
      font-size: 2rem !important;
      line-height: 1.2;
    }
    .hsd-mod-background-hero-w-content {
      display: flex;
      align-items: end;
      width: 100%;
      padding: 270px 5vw 5vw;
      background: var(--hsd-mod-bhwc-mobile-bg);
      background-size: cover;
      background-position: center 17%;
    }

    .hsd-mod-bhwc-body-btn-cont {
      max-width: 100%;

      flex-flow: var(--hsd-mod-bhwc-mobile-btn-body-position);
    }
  }

  @media screen and (max-width: 720px) {
    .hsd-mod-background-hero-w-content {
      background-position: center 20%;
    }
  }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hsd-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 fixed columns */
    gap: 15px;
    max-width: 100%; /* margin: 0 auto; */
    padding:1rem;
  }
  .hsd-location-card {
    background-color: white;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
  }
  .hsd-location-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .hsd-location-card a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    width: 100%;
    color: inherit;
  }
  .hsd-location-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  .hsd-location-text {
    font-size: 18px;
    font-weight: 500;
  } /* Responsive adjustments */
  @media screen and (max-width: 1024px) {
    .hsd-location-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
  }
  @media screen and (max-width: 600px) {
    .hsd-location-grid {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }
  }