.testimonials-section {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-title {
font-size: 2.5rem;
color: #1E9BCE;
margin-bottom: 15px;
font-weight: 700;
background: linear-gradient(135deg, #1E9BCE, #1E9BCE);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-subtitle {
font-size: 1.1rem;
color: #7f8c8d;
font-weight: 400;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}

.testimonial-card {
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.8);
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
content: '"';
position: absolute;
top: -10px;
left: 20px;
font-size: 4rem;
color: #1E9BCE;
font-weight: bold;
opacity: 1s;
}

.testimonial-text {
font-size: 1rem;
line-height: 1.7;
color: #34495e;
margin-bottom: 25px;
font-style: italic;
text-align: left;
}

.testimonial-author {
border-top: 2px solid #ecf0f1;
padding-top: 20px;
}

.author-name {
font-weight: 700;
color: #2c3e50;
font-size: 1.1rem;
margin-bottom: 5px;
}

.author-title {
color: #1E9BCE;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 3px;
}

.author-company {
color: #7f8c8d;
font-size: 0.9rem;
font-weight: 500;
}

.stars {
color: #ffd700;
font-size: 1.2rem;
margin-bottom: 15px;
}

@media (max-width: 768px) {
.testimonial-card {
padding: 25px;
}

.section-title {
font-size: 2rem;
}

.testimonials-section {
padding: 40px 15px;
margin: 20px;
}

.testimonials-grid {
grid-template-columns: 1fr;
}
}
