*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ececef;
    font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */

.topHeader{
    background: linear-gradient(90deg,#007936,#b96511);
    padding:18px 35px;
    border-bottom:4px solid #2b2c91;
}

.logoBox img{
    width:95px;
}

.headerTitle{
    text-align:center;
    color:#fff;
}

.headerTitle h1{
    font-size:25px;
    font-weight:700;
    margin-bottom:5px;
    text-transform:uppercase;
}

.headerTitle p{
    color:#ffd500;
    margin:0;
    font-size:15px;
}

.helpDesk{
    text-align:right;
    color:#fff;
    font-size:15px;
    line-height:28px;
}

.helpDesk i{
    color:#ff3aa7;
    margin-right:6px;
}

.helpDesk span{
    display:block;
    font-size:14px;
    font-weight:600;
}

/* ================= MAIN ================= */

.mainSection{
    padding:25px 0 50px;
    min-height:calc(100vh - 170px);
}

/* Card base */
.mainCard,
.infoCard{
    background:#f7f7f7;
    border-radius:14px;
    padding:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    height:100%;
}

/* Titles */
.cardTitle,
.cardHeading{
    background:#8d9300;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:8px;
    font-weight:700;
    margin-bottom:16px;
}

/* text blocks */
.contentBox{
    background:#e9edf5;
    border-left:4px solid #c36d11;
    border-radius:5px;
    padding:12px;
    margin-bottom:10px;
    color:#333;
    font-size:15px;
    line-height:28px;
}

.contentBox strong{
    font-size:16px;
}

/* links */
.detailLink{
    display:block;
    background:#e9edf5;
    padding:14px;
    border-radius:6px;
    margin-bottom:12px;
    color:#006030;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.detailLink:hover{
    background:#dde4f1;
    color:#000;
}

.detailLink i{
    margin-right:8px;
}

.newsLink{
    color:#275be7;
    font-size:16px;
    text-decoration:underline;
}

/* ================= FOOTER ================= */

.footerSec{
    background: linear-gradient(90deg,#007936,#b96511);
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:16px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .logoBox{
        text-align:center;
        margin-bottom:15px;
    }

    .headerTitle{
        margin-bottom:15px;
    }

    .helpDesk{
        text-align:center;
    }

    .headerTitle h1{
        font-size:22px;
    }

    .cardTitle{
        font-size:17px;
    }
}