.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.review-card {
    flex: 0 0 auto;
    width: 300px; /* Adjust based on your preference */
    margin-right: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.review-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.review-content {
    padding: 15px;
}

.review-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.review-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.review-link {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}
