.customer-reviews .swiper-container{
    width: 50%;
    border-radius: 10px;
}

.customer-reviews {
    display: flex;
    background: #d0282c;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
}

.image-container {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.image-container img {
    width: 45%;
    height: auto;
    display: block;
}

.image-container p {
    color: #fff;
    font-weight: bold;
}

.cr-section-title h2 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.customer-reviews .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #eee;
    height: 250px;
    transition: all 200ms linear;
    transform: scale(0.8);
    padding: 20px;
    gap: 10px;

}

.customer-reviews .swiper-slide.swiper-slide-active {
    transform: scale(1);
    background: rgb(255, 255, 255);
}

.customer-reviews .swiper-slide img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.customer-reviews .swiper-wrapper {
    overflow: visible !important; /* Fix for hidden slides issue */
}

.customer-reviews p {
    margin: 0;
}

.cr-avatar {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cr-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cr-section-title {
    padding: 15px 0px;
}

@media (max-width: 767px) {
    .customer-reviews {
        flex-direction: column;
    }
    
    .customer-reviews .swiper-container{
        width: 100%;
    }
    
    .image-container {
        width: 100%;
    }
    .customer-reviews .swiper-slide {
        height: 300px;
    }
    .image-container img {
        width: 33%;
    }
}