.testimonials-section {
    background: #30261b;
    margin-top: 50px;
    padding: 50px 5%;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.testimonials-header h2 {
    color: white;
    font-size: 3.5rem;
    margin: 20px 0;
}

.testimonials-header p {
    color: rgba(255,255,255,.75);
    font-size: 1.15rem;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    transition: .3s ease;
}

.stars {
    color: #d29012;
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.testimonial-card p {
    color: #6e655c;
    line-height: 1.9;
    margin-bottom: 30px;
}

.client {
    border-top: 1px solid #ece7e1;
    padding-top: 20px;
}

.client h4 {
    color: #30261b;
    margin-bottom: 5px;
}

.client span {
    color: #8a8075;
    font-size: .95rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }
}