.testimonials-carousel {
    padding: 40px 0;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: #666;
}

/* Стили для стрелок слайдера */
.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:before {
    transform: translate(-25%, -50%) rotate(135deg);
}

.slick-next:before {
    transform: translate(-75%, -50%) rotate(-45deg);
}

/* Точки навигации */
.slick-dots {
    position: absolute;
    bottom: -30px;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #333;
} 