 /* CSS for Graphic Link Grid Section */
  .hsd-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .hsd-car-model {
    flex: 1 1 30%; /* Adjusts the flex basis to 30%, allowing 3 items per row */
    margin: 0 15px; /* Adjust the side margins as needed */
    text-align: center;
  }
  .hsd-car-model img {
    max-width: 100%;
    height: auto;
  }
  .hsd-car-model a {
    text-decoration: none;
    color: black; /* Or any color you want for the text */
  }
  .hsd-car-model p {
    margin-top: 0; /* Removes the default margin from the paragraph */
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .hsd-car-model {
      flex: 1 1 50%; /* Two items per row on medium screens */
    }
  }
  @media (max-width: 480px) {
    .hsd-car-model {
      flex: 1 1 100%; /* One item per row on small screens */
    }
  }