header {
    width: 100%;
    padding: 28px 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #61168C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    width: 150px;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: #b6b6b6;
    font-weight: 600;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-item.active a {
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        color: #ffffff;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 16px;
    }
    
    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    }
}