.reviewsContainer {
    overflow: hidden;
}
#reviews {
    display: flex;
    flex-direction: row;
    position: relative;
    animation: scrollReview 8s linear infinite;
}
#reviews .review {
    padding: 10px;
    margin-right: 10px; /* Add space between items */
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    flex-shrink: 0;
    animation-delay: 2s;
}
.star-rating {
    font-size: 18px;
    color: #d3d3d3;
}
.star-rating .filled {
    color: #ffcc00;
}
@keyframes scrollReview {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Adjust this based on duplication */
    }
}