* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 20px 90px 0 35px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a:hover
{
	
	color: #01bee4;
	transition: background-color 0.3s ease;
}

.button-link {
    padding: 10px 20px;
    background-color: #fb7536; /* Primary background color */
    color: white !important;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-link:hover {
    background-color: #01bee4; /* Hover color */
	transition: 0.3s;
}

.logo img {
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 1.1em; /* Set the font size to 1em */
    text-decoration: none;
    color: white;
    font-family: 'Open Sans', sans-serif; /* Ensure 'Open Sans' is applied */
	font-weight: 300;
}

nav ul li:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 9999;
}

.dropdown li {
    margin: 0;
    padding: 10px 20px;
}

.dropdown li a {
    white-space: nowrap;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Hide checkbox input */
#menu-toggle {
    display: none;
}

/* Mobile styling */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
    }

    .logo img {
        max-width: 90px;
        height: auto;
    }

    .menu li {
        height:50px;
        padding:15px;
        border-top: 1px solid;
        border-color:#eaeaea;
    }

    .menu li a {
        color: #000;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: block;
        margin-left: auto;
    }
    
    .hamburger img {
        display: block;
        height: 35px;
    }

    /* Show menu when checkbox is checked */
    #menu-toggle:checked + label + nav .menu {
        display: flex;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px 0 20px;
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }
}