/* Testimonials Styles */

.testimonials-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.testimonials-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}