.testimonials-section {
    padding: 44px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.testimonials-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    width: 100%;
}

.testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 24px;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #a8ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-size: 36px;
    font-weight: 700;
    color: #1e1d26;
    font-family: 'Rubik', sans-serif;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-card p {
    font-size: 16px;
    font-weight: 400;
    color: #dbdbdb;
    line-height: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars .star {
    color: #a8ff00;
    font-size: 20px;
}

.testimonial-stars .star.empty {
    color: #3a3a48;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 32px 24px;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 24px 16px;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-avatar span {
        font-size: 28px;
    }

    .testimonial-card h4 {
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 14px;
        line-height: 20px;
    }
}
