.testimonials-section {
    background-color: white;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 250px;
}

.testimonial {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 2rem;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #e74c3c;
}
