.promo_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.promo_wrapper .col-md-4{
    float: none;
    width: 33.33%;
}

@media (max-width: 991px) {
    .promo_wrapper .col-md-4 {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .promo_wrapper .col-md-4 {
        width: 100%;
    }
}

.about_img {
    width: 100%;
    height: auto;
    display: block;
}

.promo_content{
    text-align: center;
    border: 1px dashed #ddd;
    padding: 40px 25px;
    background: #fff;
    height: 100%;
}






/* Pricing Row Alignment */
.pricing_lists{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 25px;
}

/* Equal Width */
.pricing_lists .col-lg-3{
    width: 25%;
    float: none;
    padding: 0;
}

/* Pricing Card */
.pricing_wrapper{
    height: 100%;
}

.pricing_box{
    border: 1px solid #ddd;
    text-align: center;
    padding: 30px 20px;
    min-height: 560px;
    background: #fff;
}

/* Heading */
.pricing_head h3{
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
}

/* Price */
.pricing_head h2{
    background: #eab928;
    color: #fff;
    padding: 20px;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Features */
.pricing_mid{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing_mid li{
    margin-bottom: 18px;
    line-height: 30px;
}

/* Button */
.pricing_footer .button_1{
    display: inline-block;
    padding: 12px 30px;
    background: #eab928;
    color: #fff;
    text-transform: uppercase;
}

/* Responsive */
@media(max-width:991px){

    .pricing_lists{
        flex-wrap: wrap;
    }

    .pricing_lists .col-lg-3{
        width: 48%;
        margin-bottom: 30px;
    }

}

@media(max-width:767px){

    .pricing_lists .col-lg-3{
        width: 100%;
    }

}







/* Latest Insights */



/* Blog Section */
.blog_wrapper{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap;
}

/* Equal Width */
.blog_wrapper .col-lg-4{
    width: 33.33%;
    float: none;
    padding: 0;
}

/* Blog Card */
.blog_post{
    border: 1px solid #ddd;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image */
.blog_img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Content */
.blog_content{
    padding: 25px;
    flex-grow: 1;
}

/* Title */
.blog_content h4{
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

/* Paragraph */
.blog_content p{
    line-height: 30px;
    margin: 0;
}

/* Responsive */
@media(max-width:991px){

    .blog_wrapper{
        flex-wrap: wrap;
    }

    .blog_wrapper .col-lg-4{
        width: 48%;
    }

}

@media(max-width:767px){

    .blog_wrapper .col-lg-4{
        width: 100%;
    }

}