.testimonials-header {
    background-color: #F5F0E6;
    padding: 3rem 1rem 1rem 1rem;
    text-align: center;
}

.testimonials-heading {
    font-family: "Philosopher", sans-serif;
    font-size: 3.5rem; /* slightly larger */
    color: #442b20;
}

.testimonial-grid {
    background-color: #F5F0E6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem; /* slightly more spacing */
    padding: 2.5rem 3rem 4rem 3rem;
    justify-items: center;
    margin-left: 120px;
    margin-right: 120px;
}

.testimonial-card {
    background-color: #F5F0E6;
    border: 2px solid #C4B6D2;
    border-radius: 10px;
    padding: 2rem; /* bigger padding */
    box-shadow: 8px 8px 0px #D9D9D9;
    font-family: "Xanh Mono", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 380px; /* slightly wider */
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-name {
    font-size: 1.75rem; /* bigger name */
    font-family: "Philosopher", sans-serif;
    margin: 0;
    color: #C4B6D2;
}

.testimonial-service {
    font-size: 1rem; /* slightly larger */
    color: #442b20;
    display: block;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem; /* slightly larger */
    color: #442b20;
    margin: 1.25rem 0;
    flex-grow: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: flex-start;
}

.star-icon {
    width: 16px; /* slightly larger */
    height: 16px;
    filter: brightness(0.9);
}

@media screen and (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        margin-left: 30px;
        margin-right: 30px;
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
}