.marquee-container-6a1f9be0 {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 20px 0;
    display: flex;
    --carousel-speed-6a1f9be0: 30s;
}

.marquee-track-6a1f9be0 {
    display: flex;
    width: max-content;
}

.marquee-track-6a1f9be0.is-animating {
    animation: marquee-scroll-6a1f9be0 var(--carousel-speed-6a1f9be0) linear infinite;
}

.marquee-content-6a1f9be0 {
    display: flex;
    flex-shrink: 0;
}

.review-card-6a1f9be0 {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    margin: 0 15px;
    border-radius: 8px;
    min-width: 350px;
    max-width: 450px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    white-space: normal;
}

.review-stars-6a1f9be0 {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars-6a1f9be0 svg {
    width: 24px;
    height: 24px;
    fill: #facc15;
}

.review-text-6a1f9be0 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #333333;
}

.reviewer-name-6a1f9be0 {
    font-weight: 600;
    font-size: 20px;
    color: #14532d;
    margin-bottom: 5px;
}

.reviewer-title-6a1f9be0 {
    font-size: 14px;
    color: #6b7280;
}

@keyframes marquee-scroll-6a1f9be0 {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This gets overwritten by JS dynamically based on content width */
        transform: translateX(-50%); 
    }
}
