/* Basic reset and styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.header-area {
    background-color: #4d4cff;
    padding: 15px 0;
}

.header-logo img {
    max-width: 100px;
}

.header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header_menu ul {
    display: flex;
    list-style: none;
}

.header_menu ul li {
    margin: 0 15px;
}

.header_menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.header_menu ul li .sub-menu {
    display: none;
    position: absolute;
    background-color: #4d4cff;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.header_menu ul li:hover .sub-menu {
    display: block;
}

.header-button a {
    color: white;
    background-color: #39ff14;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
}

.mobile-menu-toggle span {
    background-color: white;
    height: 3px;
    margin: 3px 0;
    display: block;
    border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header_menu {
        display: none;
        flex-direction: column;
        background-color: #4d4cff;
        width: 100%;
        text-align: center;
    }

    .header_menu ul {
        flex-direction: column;
    }

    .header_menu ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-menu-active {
        display: flex;
    }
}
