/* Default link styles */
.Header__tabsTab a,
.Header__tabsTab a:link,
.Header__tabsTab a:visited,
.Header__tabsTab a:active {
    text-decoration: none;
    color: #ffffff; /* Default white */
}

/* Hover effect */
.Header__tabsTab a:hover {
    color: #36baab; /* Replace with your desired hover color */
}
.SearchContainer__searchIcon {
    background-color: #00778a; /* Your desired color */
    transition: background-color 0.3s ease; /* Optional smooth effect */
}
.SearchContainer__searchIcon:hover {
    background-color: #36baab; /* Change to another color on hover */
}
.two-col {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.card {
  text-align: center !important;
}
.card a:hover img {
  cursor: pointer;
}
.card a:hover img {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}
.card-icon {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}


