/* Testimonials CSS */
.testimonials-section {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    width: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial {
    flex: 0 0 30%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 3rem 0;
}

.testimonials-section h2 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Optimierung */
@media (max-width: 1024px) {
    .testimonial {
        flex: 0 0 20%;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .testimonial span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    .testimonial p {
        font-size: 0.95rem;
    }

    .testimonial span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section h2 {
        font-size: 1.6em;
    }

    .testimonial p {
        font-size: 1em;
    }
}