.testimonials {
    background-color: #0d1c33;
    padding: 80px 0;
}

.testimonials__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.1;
}

.testimonials__subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 56px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(90deg, #35f0ec 0%, #35f0ec 100%);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.testimonial-card__stars span {
    font-size: 20px;
    color: #f5a623;
}

.testimonial-card__text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #080806;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #080806;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 48px 0;
    }

    .testimonials__title {
        font-size: 24px;
    }

    .testimonials__subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}
