.tse-header{
    background:#ffffff;
    border-bottom:2px solid #e4e6f0;
    padding:10px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    z-index:100;
}

.tse-logo{
    text-decoration:none;
    display:flex;
    align-items:center;
}

.tse-logo img{
    height:62px;
    width:auto;
    display:block;
}

.tse-nav{
    display:flex;
    gap:10px;
}

.tse-nav-btn{
    background:#1a1f8f;
    color:white;
    font-family:'Inter',system-ui,sans-serif;
    font-weight:600;
    font-size:14px;
    padding:12px 28px;
    text-decoration:none;
    transition:0.15s;
}

.tse-nav-btn:hover{
    background:#2530b0;
    transform:translateY(-1px);
}

@media(max-width:900px){

    .tse-header{
        padding:12px 20px;
        flex-wrap:wrap;
        gap:12px;
    }

    .tse-logo img{
        height:48px;
    }

    .tse-nav{
        flex-wrap:wrap;
        gap:6px;
    }

    .tse-nav-btn{
        padding:9px 14px;
        font-size:12px;
    }

}