.testimonials-section {
    padding: 70px 0;
}

.testimonials-section h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials-section p.section-desc {
    color: #6b7280; /* gray-500 */
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #e5e7eb; /* gray-100 */
    padding: 40px;
    transition: 0.4s ease;
}

.testimonial-card:hover {
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    color: #6b7280;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-user img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
}

.testimonial-user span {
    color: #6b7280;
}

/* Grid layout */
.testimonials-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
