.nushto-reviews-title {
    margin-bottom: 50px;
    text-align: center;
}

.nushto-reviews-title h2 {
    margin-bottom: 16px;
    color: #FF7A00;
}

.nushto-reviews-title p {
    color: #fff;
}

.nushto-reviews-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.nushto-review-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 40px 24px;
    border-radius: 32px;
    border: 2px solid #FF7A00;
    text-align: center;
}

.nushto-review-item h3 {
    color: #FF7A00;
    font-size: clamp(18px, 4vw, 24px);
}

.nushto-review-item p {
    color: #fff;
    line-height: 1.5;
}

.nushto-review-item img {
    max-width: 157px;
}

@media screen and (max-width: 991px) {
    .nushto-reviews-row {
        grid-template-columns: 1fr 1fr;
    }

    .nushto-review-item {
        padding: 30px 15px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 768px) {
    .nushto-reviews-row {
        grid-template-columns: 1fr;
    }

    .nushto-review-item {
        padding: 30px 15px;
        border-radius: 15px;
    }
}