.specialtiesListSection {
  background-color: #faf9fb; /* Gray background color */
  padding: 10px;
}

.listcon {
  display: flex; /* Flex display for the lists */
  justify-content: space-between; /* Distribute items evenly */
}

.listcon ul {
  flex: 1; /* Equal width for each list */
}

.listcon ul li a {
  text-decoration: none; /* Remove underline from links */
  color: #636694; /* Link color */
  font-size: 16px; /* Link font size */
}

.listcon ul li a:hover {
  color: #15b9d9; /* Link color on hover */
}
@media screen and (max-width: 768px) {
  .listcon {
    flex-direction: column; /* Stack lists vertically on smaller screens */
  }
}
