  * {
    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 */
    }
  }