 .container-max-xl {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  :root {
    --hsd-desktop-bg: /* Desktop Gradient Overlay */
    linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 65%, rgba(0, 0, 0, 0) 100%), /* Desktop Background Image */ url("https://service.secureoffersites.com:443/images/GetLibraryImage?fileNameOrId=838303") no-repeat center;
    --hsd-mobile-bg: /* Mobile Gradient Overlay */
    linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.70) 65%, rgba(0, 0, 0, 0.30) 100%), /* Mobile Background Image */ url("https://service.secureoffersites.com:443/images/GetLibraryImage?fileNameOrId=838303") no-repeat center;
    --hsd-hero-h1-size: 54px !important;
    --hsd-hero-text-color: white;
    --hero-hero-text-size: 16px;
  }
  .hsd-hero {
    width: 100%;
    background: var(--hsd-desktop-bg);
    background-size: cover;
    height: auto;
    padding: 5vw;
  }
  .hsd-contentWrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px;
  }
  .hsd-heroContent {
    color: var(--hsd-hero-text-color);
    font-size: var(--hero-hero-text-size);
    max-width: 38vw;
  }
  .hsd-heroContent h1 {
    color: var(--hsd-hero-text-color);
    font-size: var(--hsd-hero-h1-size);
    line-height: 1.2;
    margin: 18px 0 1.5rem;
  }
  .hsd-heroContent h1 span {
    display: block;
    font-size: 24px;
    margin: 18px 0;
  }
  @media screen and (max-width: 720px) {
    .hsd-contentWrap {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1rem;
    }
    .button-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .btn {
      display: flex;
      justify-content: center;
    }
    .hsd-heroContent {
      color: white;
      font-size: 16px;
      max-width: 100%;
      text-align: center;
    }
    .hsd-heroContent h1 span {
      display: block;
      font-size: 1.2rem;
      margin: 18px 0;
    }
    .hsd-heroContent h1 {
      color: #fff !important;
      font-size: 2rem !important;
      line-height: 1.2;
    }
    .hsd-hero {
      width: 100%;
      background: var(--hsd-mobile-bg);
      background-size: cover;
    }
  }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 fixed columns */
    gap: 15px;
    max-width: 100%; /* margin: 0 auto; */
  }
  .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;
  }
  .location-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .location-card a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    width: 100%;
    color: inherit;
  }
  .icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  .location-text {
    font-size: 18px;
    font-weight: 500;
  } /* Responsive adjustments */
  @media screen and (max-width: 1024px) {
    .location-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
  }
  @media screen and (max-width: 600px) {
    .location-grid {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }
  }
  ul {
    list-style-position: inside; /* Bullet points inside */
    padding-left: 0; /* Remove default padding */
    margin-left: 0; /* Optional: Remove left margin */
  }
  h3.widget-heading {
    display: none;
  }