.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.top-bar{
    background:#0B3558;
    color:#fff;
    font-size:14px;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.header-main{
    min-height:85px;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85px;
}

.main-menu{
    display:flex;
    list-style:none;
    gap:35px;
    margin:0;
    padding:0;
}

.main-menu a{
    font-weight:600;
}

.header-buttons{
    display:flex;
    gap:12px;
}

.btn-phone{
    padding:12px 18px;
    border:1px solid #2D8CFF;
    border-radius:10px;
}

.btn-primary{
    background:#2D8CFF;
    color:#fff;
    padding:12px 20px;
    border-radius:10px;
}

.mobile-toggle{
    display:none;
    background:none;
    border:0;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:992px){

    .main-navigation,
    .header-buttons{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .top-bar{
        display:none;
    }
}
.site-footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-widget h3{
    margin-bottom:20px;
}

.footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-menu li{
    margin-bottom:10px;
}

.footer-menu a{
    color:#fff;
    text-decoration:none;
}

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}