.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #323232;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.header-left,
.header-right {
  min-width: 0;
}
.header-left-link {
  display: inline-block; /* or block if you want it full-width */
  text-decoration: none; /* remove underline */
}

.header-left-link .text-logo {
  color: black; /* keep your styles */
}

.header-left-link:hover .text-logo {
  color: #a6a6a6; /* hover effect */
}
.header-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.image-logo {
  height: 60px;
  margin-left: 10px;
  margin-right: 10px;
}
.text-logo {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.text-logo:hover {
  color: #a6a6a6;
}
.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  margin-right: 10px;
}
.contact,
.support {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #a6a6a6;
  text-decoration: none;
  text-align: center;
}

.contact:hover,
.support:hover {
  color: white;
}

.header-right a + a {
  border-left: 1px solid #a6a6a6; /* vertical line */
  margin-left: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .text-logo {
    display: none;
  }
}
