.testimonial-section {
background:#f7f9fb;
padding:70px 20px;
}
.section-title {
text-align:center;
font-size:34px;
font-weight:600;
margin-bottom:10px;
}
.section-subtitle {
text-align:center;
color:#666;
margin-bottom:50px;
}
.testimonial-grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
max-width:1200px;
margin:auto;
}
.testimonial-card {
background:#fff;
padding:26px;
border-radius:12px;
box-shadow:0 8px 24px rgba(0,0,0,0.06);
transition:all .25s ease;
}
.testimonial-card:hover {
transform:translateY(-6px);
box-shadow:0 16px 40px rgba(0,0,0,0.1);
}
.testimonial-card h3 {
font-size:20px;
margin-bottom:12px;
color:#1a365d;
}
.testimonial-card p {
color:#444;
line-height:1.7;
font-size:15px;
}
.tag {
display:inline-block;
margin-top:14px;
padding:4px 10px;
background:#edf2f7;
font-size:12px;
border-radius:20px;
color:#2b6cb0;
}