body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-left {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  position: relative;
}

.nav-left a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: black;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.hamburger-menu {
  display: none;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .navbar {
    padding: 15px 25px;
    justify-content: space-between;
  }

  .logo {
    margin-right: auto;
  }

  .logo img {
    height: 30px;
    object-fit: contain;
  }

  .nav-left {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    font-size: 20px;
    pointer-events: none;
  }

  .nav-left.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-left a {
    font-size: 20px;
    margin-left: 10px;
  }

  .hamburger-menu {
    display: block;
    font-size: 30px;
    z-index: 20;
  }
}

@media (min-width: 1000px) {
  .hamburger-menu {
    display: none;
  }
}
