/* Top Banner Styles */
.top-banner {
  background: #000;
  color: #fff;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Work Sans", sans-serif;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  height: 61px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 35px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }
}
