.testimonials-section {
    background: #ebebeb;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.testimonial {
    margin: 0;
    color: #363636;
}

.testimonial::before {
    content: '';
    display: block;
    width: 28px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 44' fill='none'%3E%3Cpath d='M27.49 0C14.94 0 4.77 10.16 4.77 22.71v16.4h19.11V22.7h-6.35C17.53 14.68 24.03 8.18 32.05 8.18V0h-4.56ZM59.3 0C46.75 0 36.59 10.16 36.59 22.71v16.4H55.7V22.7h-6.35c0-8.02 6.5-14.52 14.52-14.52V0H59.3Z' fill='%23a8a8a8'/%3E%3C/svg%3E") no-repeat center / contain;
    margin-bottom: 0.8rem;
}

.testimonial p {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 700px) {
    .testimonials {
        grid-template-columns: minmax(0, 1fr);
    }
}