* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 120px;
    background-color: white;
}

.navbar-logo-links-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 24px; /* Adjust size as needed */
}

.divider {
    width: 1px;
    height: 30px;
    background-color: rgb(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a img {
    width: 14px;
    height: 14px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    width: 400px;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
    padding: 6px;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 10px;
}

.dropdown-menu a {
    color: black;
    text-decoration: none;
    display: block;
}

.navbar-button-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    background: none;
    border: none;
    color: #111827;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
}

.register-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s all ease;
}

.register-btn:hover {
    background-color: #000000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }

/* Feature Items */
.dropdown-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-feature-item:hover {
    background: #f9f9f9;
}

.dropdown-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.dropdown-feature-icon img {
    width: 24px;
    height: 24px;
}

.dropdown-feature-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dropdown-feature-title {
    font-weight: bold;
    font-size: 14px;
    color: black;
}

.dropdown-feature-desc {
    font-size: 12px;
    color: #2E2A2A;
}

.dropdown-feature-arrow {
    width: 14px;
    height: 14px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
  }

  .hamburger-menu img {
    width: 30px;
    height: 30px;
  }


@media (max-width: 800px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
      display: flex;
      z-index: 99;
    }

    .navbar-button-wrapper {
      display: none;
    }

    .hamburger-menu {
      display: block;
    }
    .divider{
        display: none;
    }
  }

  @media(max-width: 460px){
    .navbar-container{
        padding: 15px 30px !important;
    }
  }