/* Default styles for larger screens */
.navbar {
  display: flex;
  align-items: center;
  background-color: #d1d2d4;
  /* padding: 10px 20px; */
  justify-content: center;
}

.navbar a {
  float: left;
  display: block;
  color: #303642;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  background-color: transparent;
  border-radius: 0;
  /* height: 0px; */
  align-items: center;
  box-shadow: none;
  font-size: 16px;
  line-height: 17px;
}
.navbar a.current {
  color: #17a655;
}

.navbar a:hover {
  background-color: #17a655;
    color: #d1d2d4;

}


.logo img {
  max-width: 150px; /* Adjust the width as needed */
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-right: 20px;
}


/* Styles for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #d1d2d4;
    position: absolute;
    top: 90px; /* Adjust the top position to match your header height */
    left: 0;
    right: 0;
  }

  .menu.active {
    display: flex;
    /* align-items: center; */
    margin: 0 auto;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #23a658;
    margin: 5px 0;
  }
}
