body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#101828;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

.topbar{
    background:#111;
    color:#fff;
    padding:18px 0;
}

.search-wrap{
    display:flex;
    width:100%;
    max-width:540px;
    margin:auto;
}

.search-wrap input{
    height:48px;
    border:0;
    padding:0 18px;
    border-radius:7px 0 0 7px;
    width:100%;
}

.search-wrap button{
    width:70px;
    border:0;
    background:#333;
    color:#fff;
    border-radius:0 7px 7px 0;
    font-size:22px;
}

.social a{
    width:42px;
    height:42px;
    background:#303030;
    color:#fff;
    border-radius:50%;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-left:7px;
}

.market{
    background:#fff;
    border-bottom:1px solid #ddd;
    overflow:hidden;
    white-space:nowrap;
    font-weight:700;
    font-size:18px;
}

.market-track{
    display:inline-block;
    padding:14px 0;
    animation:scroll 28s linear infinite;
}

.market span{
    margin-right:42px;
}

.red{
    color:#e6384f;
}

.blue{
    color:#0054b8;
}

@keyframes scroll{
    from{transform:translateX(100%);}
    to{transform:translateX(-100%);}
}

.logo-area{
    background:#fff;
    text-align:center;
    padding:45px 15px 35px;
    border-bottom:1px solid #ddd;
}

.logo-area h1{
    font-size:72px;
    font-weight:900;
    color:#004195;
    letter-spacing:-3px;
    margin:0;
}

.logo-area h1 span{
    color:#f4511e;
}

.logo-area p{
    font-size:23px;
    letter-spacing:5px;
    color:#555;
    margin-top:8px;
}

.nav-area{
    background:#fff;
    border-bottom:4px solid #0054a6;
    overflow-x:auto;
}

.nav-scroll{
    display:flex;
    flex-wrap:nowrap;
    white-space:nowrap;
    min-width:max-content;
}

.nav-scroll a{
    color:#003b7a;
    font-size:19px;
    font-weight:900;
    padding:22px 17px;
    display:block;
}

.nav-scroll a.active,
.nav-scroll a:hover{
    background:#0054a6;
    color:#fff;
}

.banner{
    margin:45px auto 35px;
}

.banner-box{
    min-height:300px;
    background:linear-gradient(120deg,#173a80,#178199);
    border-radius:6px;
    color:#fff;
    display:flex;
    align-items:center;
    padding:55px;
}

.banner-box h2{
    font-size:50px;
    font-weight:900;
}

.news-item{
    display:grid;
    grid-template-columns:230px 1fr;
    gap:25px;
    padding:28px 0;
    border-bottom:1px solid #ddd;
}

.news-item img{
    width:230px;
    height:160px;
    object-fit:cover;
    border-radius:10px;
}

.news-meta{
    font-size:18px;
    color:#667085;
    margin-bottom:10px;
}

.news-title{
    font-size:28px;
    font-weight:900;
    line-height:1.25;
}

.news-desc{
    font-size:20px;
    color:#667085;
}

.sidebar-box{
    background:#fff;
    border-radius:14px;
    padding:22px;
    margin-bottom:24px;
    box-shadow:0 4px 15px rgba(0,0,0,.07);
}

.side-title{
    color:#0054a6;
    font-weight:900;
    border-bottom:3px solid #0054a6;
    padding-bottom:12px;
    margin-bottom:15px;
}

.small-news{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:15px;
    padding:13px 0;
    border-bottom:1px solid #eee;
}

.small-news img{
    width:100px;
    height:75px;
    object-fit:cover;
    border-radius:8px;
}

.small-news h5{
    font-size:18px;
    font-weight:800;
}

.article-detail{
    background:#fff;
    padding:10px;
    border-radius:14px;
}

.article-detail h1{
    font-size:42px;
    font-weight:900;
}

.article-detail p{
    font-size:21px;
    line-height:1.8;
}

.page-heading{
    font-size:42px;
    font-weight:900;
    color:#003b7a;
}

.footer-kanal{
    margin-top:50px;
    background:#174f7a;
    color:#fff;
    padding:55px 0;
}

.footer-kanal h4{
    font-weight:900;
    margin-bottom:20px;
}

.footer-kanal ul{
    list-style:none;
    padding:0;
}

.footer-kanal li{
    margin-bottom:12px;
    color:#dcecff;
    font-size:18px;
}

.footer-bottom{
    background:#0f3555;
    color:#fff;
    text-align:center;
    padding:18px;
}

@media(max-width:991px){
    .topbar{
        text-align:center;
    }

    .topbar .col-lg-3,
    .topbar .col-lg-5,
    .topbar .col-lg-4{
        margin-bottom:15px;
    }

    .social{
        text-align:center!important;
    }

    .logo-area h1{
        font-size:52px;
    }

    .logo-area p{
        font-size:16px;
        letter-spacing:2px;
    }

    .nav-scroll a{
        font-size:16px;
        padding:15px 14px;
    }

    .banner-box{
        padding:35px;
        min-height:220px;
    }

    .banner-box h2{
        font-size:32px;
    }

    .news-item{
        grid-template-columns:1fr;
    }

    .news-item img{
        width:100%;
        height:230px;
    }

    .news-title{
        font-size:24px;
    }

    .news-desc{
        font-size:17px;
    }

    .article-detail h1{
        font-size:30px;
    }

    .article-detail p{
        font-size:18px;
    }
}

@media(max-width:576px){
    .topbar{
        padding:14px 12px;
    }

    .search-wrap{
        max-width:100%;
    }

    .logo-area{
        padding:30px 10px 25px;
    }

    .logo-area h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .logo-area p{
        font-size:13px;
        letter-spacing:1px;
    }

    .market{
        font-size:15px;
    }

    .banner{
        margin:25px auto;
    }

    .banner-box{
        padding:25px;
        min-height:180px;
    }

    .banner-box h2{
        font-size:25px;
    }

    .news-title{
        font-size:21px;
    }

    .small-news{
        grid-template-columns:85px 1fr;
    }

    .small-news img{
        width:85px;
        height:65px;
    }

    .small-news h5{
        font-size:15px;
    }
}