.testimonial-carousel {
    position: relative;
    overflow: hidden;
    background-color: #202123;
    margin: 0 auto;
    padding: 20px;
}
.testimonials {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    flex: 0 0 100%;
}
.testimonial p {
    font-size: 1rem;
    color: #fff;
}
.testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
}
.stars {
    color: gold;
    font-size: 1.2rem;
    margin-top: 5px;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.0);
    color: #B58C3A;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.arrow-left {
    left: 10px;
}
.arrow-right {
    right: 10px;
}
@media (min-width: 769px) {
    .testimonial {
        min-width: 33.33%;
        flex: 0 0 33.33%;
    }
}