.blog-cta{
    display:flex;
    align-items:center;
    gap:40px;
    background:#f8f8f8;
    border-top:6px solid #063a84ac;
    border-radius:12px;
    padding:40px;
    margin:50px 0;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.cta-image{
    flex:0 0 250px;
}

.cta-image img{
    width:100%;
    height:auto;
    display:block;
}

.cta-content{
    flex:1;
}

.cta-content h3{
    font-size:42px;
    line-height:1.2;
    color:#1c2d50;
    margin-bottom:20px;
}

.cta-content p{
    font-size:22px;
    color:#333;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    background:#e30613;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.cta-btn:hover{
    background:#c50010;
}

@media(max-width:768px){
    .blog-cta{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .cta-image{
        flex:auto;
    }

    .cta-image img{
        max-width:200px;
        margin:auto;
    }

    .cta-content h3{
        font-size:28px;
    }

    .cta-content p{
        font-size:18px;
    }
}
.audit-left{
    background:#eef7ff;
}

.audit-left h2{
    color:#0b4f9f;
    font-weight:700;
}

.audit-list{
    list-style:none;
    padding:0;
}

.audit-list li{
    margin-bottom:20px;
    font-size:18px;
    font-weight:500;
}

.audit-list li::before{
    content:"✔";
    color:#6f42c1;
    margin-right:12px;
    font-weight:bold;
}

.modal-content{
    border-radius:25px;
    overflow:hidden;
}

.modal-header{
    border-bottom:none;
}

.form-check-label{
    font-size:13px;
    line-height:1.6;
    color:#777;
}

.last-updated-box{
    margin-bottom:20px;
}

.last-updated{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EAF7F9;
    color:#0B7A7A;
    padding:8px 18px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    border:1px solid #CDEDED;
}

.last-updated i{
    color:#0B7A7A;
}