/* =========================================
TOPBAR
========================================= */

.topbar{

    background:#0F766E;

    color:#fff;

    font-size:14px;

    padding:8px 0;

}

.topbar a{

    color:#fff;

    margin-right:12px;

}

.topbar a:hover{

    color:#FFD54F;

}

.topbar-left{

    display:flex;

    align-items:center;

}

.topbar-right{

    display:flex;

    justify-content:flex-end;

    gap:25px;

}

/* =========================================
HEADER
========================================= */

.site-header{

    background:#fff;

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

.header-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

}

.header-logo img{

    width:90px;

    height:90px;

    object-fit:contain;

}

.header-title{

    flex:1;

}

.header-title h1{

    margin:0;

    font-size:34px;

    font-weight:800;

    color:#0F766E;

    letter-spacing:1px;

}

.header-title h2{

    margin-top:6px;

    font-size:17px;

    color:#D4AF37;

    font-weight:600;

}

.header-title p{

    margin-top:10px;

    margin-bottom:0;

    color:#666;

    font-size:14px;

    line-height:1.7;

}

.header-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.info-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.info-item i{

    width:45px;

    height:45px;

    background:#0F766E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:18px;

}

.info-item strong{

    display:block;

    color:#0F766E;

    margin-bottom:4px;

}

.info-item span{

    color:#666;

    font-size:14px;

}