body,
#body,
.body-wrapper,
main {
    background: linear-gradient( 135deg, #f3f8ff 0%, #e8f1fd 50%, #f8fbff 100% ) !important;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 15px 80px;
}

h4 {
    color: #0d2b5e;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

h5.text-primary {
    color: #1565c0 !important;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #1565c0;
    padding-left: 12px;
}

p {
    color: #64748b;
    line-height: 1.7;
}

hr {
    margin: 60px 0;
    border: 0;
    height: 1px;
    background: #dbe4f0;
}

.row {
    margin-bottom: 24px;
}

.card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 6px 18px rgba(13, 43, 94, 0.08);
    transition: all .25s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(13, 43, 94, 0.15);
    }

.card-body {
    padding: 20px;
}

.card-title {
    color: #0d2b5e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 50px;
}

.card-text {
    color: #64748b;
    font-size: .95rem;
    line-height: 1.6;
}

.card img {
    width: 180px;
    height: 140px;
    object-fit: contain;
    background: #f8fbff;
    padding: 10px;
    border-radius: 10px;
    margin-right: 15px;
    transition: transform .3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background: #1565c0;
    border: 1px solid #1565c0;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    transition: all .2s ease;
}

    .btn-primary:hover {
        background: #0d47a1;
        border-color: #0d47a1;
        transform: translateY(-2px);
    }

.card-body::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 768px) {

    h4 {
        font-size: 1.6rem;
    }

    .card img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
        float: none !important;
        display: block;
    }

    .card-title {
        min-height: auto;
    }
}
