/* Testimonials Section */
.testimonials {
    background-color: var(--gray-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    margin: 0 15px;
}

.testimonial-text {
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.testimonial-text:before, .testimonial-text:after {
    content: '"';
    font-size: 60px;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: 0;
}

.testimonial-text:after {
    bottom: -40px;
    right: 0;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}
 .testimonial-text p {
        font-size: 16px;
    }