/* =====================================================
   COMPLIANCE SECTION — SOP STANDARD + BOOTSTRAP COLORS
   ===================================================== */

/* Section wrapper */

.Compliance {
    width: 100%;
    max-width: 100%;
    /* Keep this to ensure nothing "pokes out" */
    overflow-x: hidden; 
    background: linear-gradient(to top, #ffffff, #9eb2c1, #fed700);
    /* Top/Bottom: 55px | Left/Right: 15px */
    padding: 55px 15px; 
}

.cf-inner-tight {
    max-width: 100%;
    margin: 0 auto;
    /* Remove padding here if you put it in the parent .Compliance */
    padding: 0; 
}
.compliance-title {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;

    /* small side gap */
    padding-left: 10px;
    padding-right: 10px;

    /* spacing */
    margin-bottom: 25px;
    line-height: 1.35;
}


/* Card header */
.card-header {
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
}

.card-title {
    margin: 0;
    font-weight: 600;
}

/* Card color themes (your custom) */
.card1 {
    background-color: #FFFBFC;
}

.card2 {
    background-color: #FBFCFF;
}

.card3 {
    background-color: #F8FDF8;
}



/* Card hover effect */
.card:hover {
    box-shadow:
        0px 2px 4px rgba(0,0,0,0.4),
        0px 7px 13px -3px rgba(0,0,0,0.3),
        0px 0px 0px rgba(0,0,0,0.2) inset;
    transition: 0.3s ease;
}

@media (max-width: 767.98px) {
    .Compliance .card {
        margin-bottom: 20px; /* or whatever gap you want */
    }
}
