.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
}

.custom-header-logo img {
  height: 48px;
}

.hamburger-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-button span {
  width: 24px;
  height: 3px;
  background: black;
}

.hamburger-nav {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 60px;
  right: 10px;
  border: 1px solid #ddd;
  padding: 1rem;
  z-index: 999;
}

.hamburger-nav a {
  font-size: 18px;
  font-weight: 400;
}

.hamburger-nav.active {
  display: flex;
}
