.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;
    }
}