body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  color: white;
}

.navbar-logo {
  font-size: 24px;
  font-weight: bold;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

.navbar-menu {
  list-style: none;
  display: flex;
}

.navbar-menu li {
  margin-right: 20px;
}

.navbar-menu a {
  text-decoration: none;
  color: white;
}
.navbar-menu li a {
  pointer-events: auto;
}
.navbar-menu li {
  margin-right: 20px;
  pointer-events: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #333;
  top: 100%;
  left: 0;
  width: 200px;
  z-index: 1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Display the dropdown menu when it's active */
.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown.active .dropdown-menu {
  display: block;
}

/* Display the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}