.runssl-testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.testimonials-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.testimonial-item.active {
    opacity: 1;
}
.testimonial-inner {
    display: flex;
    align-items: flex-start;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
}
.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    object-fit: cover;
}
.testimonial-content {
    flex: 1;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}
.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: #007cba;
    font-size: 18px;
}
.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
/* Responsive */
@media (max-width: 768px) {
    .testimonial-inner { flex-direction: column; text-align: center; }
    .testimonial-image { margin-right: 0; margin-bottom: 10px; }
}
