nav {
  position: sticky;
  top: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1000;
  background-color: white;
}

.logo img {
  width: 70px;
}

.right-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.right-nav li {
  padding: 10px;
  list-style-type: none;
  font-size: large;
  font-weight: 500;
}

.right-nav > li > a {
  color: black;
  text-decoration: none;
}

.right-nav a.active {
  color: #510099; /* Blue or your brand color */
  border-bottom: 2px solid #510099;
  padding-bottom: 5px;
}

.right-nav > li > a:hover {
  color: #510099;
  transition: color 0.3s ease;
}

.right-nav > li:hover{
  cursor: pointer;
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  nav {
    position: sticky;
  }
  .menu-toggle {
    display: block;
  }

  .right-nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 70px;
    right: 0%;
    width: 100%;
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .right-nav.show {
    display: flex;
  }

  .right-nav li {
    width: 100%;
    padding: 10px 0;
  }

  .right-nav > li > a {
    width: 100%;
    display: block;
  }
}
