header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo img {
    height: 40px;
    width: auto;
}

/*nav {*/
/*    flex: 1;*/
/*    text-align: center;*/
/*}*/

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 50px;
}

.nav-menu ul li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-decoration: none;
    color: #010202;
}

.nav-menu ul li a:hover {
    color: #007BFF;
}

.nav-menu ul li a.selected {
    color: orange; /* Sets the selected item's color to orange */
}



.business-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent; /* Removes the background color */
    color: #007BFF; /* Sets the text color */
    border: 2px solid #007BFF; /* Adds a border with the specified color */
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    gap: 10px; /* Adds spacing between the image and text */
}

.business-button img.button-icon {
    height: 20px; /* Adjust the size of the icon */
    width: auto; /* Maintain aspect ratio */
}

.business-button:hover {
    background-color: #007BFF; /* Adds background color on hover */
    color: #fff; /* Changes text color on hover */
}

/*.nav-menu {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

.hamburger-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile view styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide navigation items */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: white;
        border: 1px solid #ccc;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu ul {
        flex-direction: column; /* Ensure the list items are stacked */
        gap: 10px; /* Add spacing between items */
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu in mobile view */
    }
}
