.navbar {
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img { height: 38px; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

.nav-link.active {
  background: #0f766e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.language-select {
  border: none;
  background: transparent;
  font-size: 14px;
}

.login-link {
  text-decoration: none;
  color: #0f766e;
  font-weight: 500;
}

.hamburger { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
/* Hide mobile menu by default */
.mobile-menu {
  display: none;
}

/* Show mobile menu only on small screens */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    width: 200px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 16px;
    gap: 12px;
  }

  #menu-toggle:checked + .mobile-menu {
    display: flex;
  }
}

