.testimonials {
    text-align: center;
    padding: 60px 20px;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.testimonial-container {
    position: relative;
    width: 90%;
    margin: auto;
}

.testimonial {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.testimonial h4 {
    margin: 15px 0 5px;
    color: #59291c;
}

.testimonial span {
    font-size: 14px;
    color: #777;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #59291c;
    color: #fff;
    border: none;
    font-size: 20px;
    width:50px;
    height:50px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    right: -20px;
}

.next {
    left: -20px;
}

@media (max-width: 768px) {
    .prev {
        right: 2px;
    }
    .next {
        left: 2px;
    }
}
