.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 60px;
  z-index: 1000;
  border-bottom: 2px solid #00c896;
}

.nav-brand {
  color: #00c896;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}

.nav-links-wrap {
  display: flex;
  gap: 30px;
  height: 100%;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 5px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  height: 100%;
}

.nav-item:hover {
  color: #00c896;
}

.nav-item.active {
  color: #00c896;
  border-bottom-color: #00c896;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 0;
  }
  .nav-links a {
    font-size: 0.78rem;
    padding: 8px 6px;
  }
  .top-nav {
    padding: 0 15px;
    justify-content: center;
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
  .nav-links-wrap {
    width: 100%;
    justify-content: space-around;
    gap: 10px;
    margin-top: 5px;
  }
  .nav-item {
    font-size: 0.85rem;
    padding: 10px 0;
    height: 44px;
  }
}

@media print {
  .top-nav {
    display: none !important;
  }
}