/* They Say Plugin Styles */
.they-say-slider {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 80px 100px;
}

.they-say-slider::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    font-family: Georgia, serif;
    pointer-events: none;
    z-index: 0;
}

.they-say-slides {
    position: relative;
    min-height: 200px;
    z-index: 1;
}

.they-say-slide {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.they-say-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.they-say-content {
    text-align: center;
    position: relative;
}

.they-say-quote-icon {
    display: none;
}

.they-say-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.they-say-author {
    font-style: normal;
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.they-say-prev,
.they-say-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.they-say-prev:hover,
.they-say-next:hover {
    color: rgba(0, 0, 0, 0.6);
}

.they-say-prev:active,
.they-say-next:active {
    transform: translateY(-50%) scale(0.9);
}

.they-say-prev {
    left: 20px;
}

.they-say-next {
    right: 20px;
}

.they-say-dots {
    text-align: center;
    margin-top: 40px;
}

.they-say-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.they-say-dot.active {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.3);
}

.they-say-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .they-say-slider {
        padding: 60px 70px;
    }
    
    .they-say-slider::before {
        font-size: 250px;
    }
    
    .they-say-text {
        font-size: 16px;
    }
    
    .they-say-prev {
        left: 10px;
    }
    
    .they-say-next {
        right: 10px;
    }
}