body {
    background: #eef2f7;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #2b2b2b;
}

.container {
    max-width: 1200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(11,79,138,0.06);
    border: 1px solid #e3e8ee;
    padding: 32px;
}

.morpheus-den-gradient {
    border: none;
    height: 4px;
    width: 100%;
    background: #0B4F8A;
    border-radius: 10px;
    margin: 0 0 24px 0;
    opacity: 1;
}

.section-title {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #0d3a63;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e3e8ee;
    position: relative;
}

    .section-title::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #e8a020;
        display: block;
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
    }

.section-subtitle {
    font-size: 19px;
    font-weight: 600;
    color: #0d3a63;
    margin-bottom: 12px;
}

.text-justify {
    text-align: justify;
}

    .text-justify p {
        line-height: 1.75;
        color: #55606e;
        font-size: 15px;
    }

.custom-list {
    padding-left: 18px;
    list-style: none;
}

    .custom-list li {
        margin-bottom: 10px;
        padding-left: 24px;
        position: relative;
        color: #374151;
        font-size: 15px;
    }

        .custom-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #b97c17;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 13px;
        }

.image-wrap {
    background: #f7f9fc;
    border: 1px solid #e3e8ee;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    margin-bottom: 8px;
}

img.img-fluid {
    border-radius: 8px;
    transition: transform .3s ease;
}

    img.img-fluid:hover {
        transform: scale(1.02);
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 21px;
    }

    .container {
        padding: 20px;
    }
}