
.testimonials {
    text-align: center;
    padding: 40px;
    color: #5c4033;
}

.testimonials h2 {
    font-size: 2rem;
    padding: 60px 20px;
    background-color: #fffaf5;
}

.testimonial-container{
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.testimonial.active {
    display: flex;
}

.profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #c69c6d;
}

.stars {
    color: #f5b301;
    font-size: 1.2rem;
    margin: 5px 0 10px;
}

.arrow {
    background-color: f5b301;
    border: 2px solid #c69c6d;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    cursor: pointer;
    position: absolute;
    top: 30%;
    translate: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.arrow:hover {
    background-color: #c69c6d;
    color: white;
    border-color: #a6784a;
    transform: translateY(-50%) scale(1.1);
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}

@media (max-width: 600px) {
    .arrow.left {
        left: 10px;
    }
    .arrow.right {
        right: 10px;
    }
}


footer {
    background-color: #4b2e05;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}