.testimonials-single.slick-center {
    margin: 0 5px 0 5px;
    height: 450px;
}

.testimonials-single.slick-center p.icon {
    color: #004c9c;
}

.testimonials-single {
    margin: 25px 5px 25px 5px;
    background: white;
    color: black;
    padding: 25px;
    transition: all .3s;
    height: 450px;
}

p.icon {
    font-size: 10rem;
    max-height: 5rem;
    line-height: 10rem;
    margin: 0;
    font-family: serif;
    color: #f18d31;
    transition: all .6s;
}

.details p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5rem;
}

.details p.name {
    font-weight: bolder;
    color: #12291b;
}

.details p.location {
    color: gray;
    font-size: 1rem;
}

/* Slick carousel overrides */
.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

.slick-dots {
    bottom: 20px;
}

/* Responsive styles */
@media (max-width: 767px) {
    .testimonials-single {
        height: auto;
        min-height: 300px;
    }
    
    .testimonials-single.slick-center {
        height: auto;
        min-height: 300px;
    }
}

.review-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.review-group-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.review-group-inner .review-item {
    flex: 0 0 32%;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .review-group-inner .review-item {
        flex: 0 0 100%;
    }
} 