.reviews-section {
    width: 70%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: white;
}

.review-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 7px 10px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
}

.rating {
    color: #ecc94b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.comment {
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    white-space: pre-wrap;
}

.review-footer {
    color: #718096;
    font-size: 0.9rem;
    text-align: right;
    padding-top: 0.5rem;
    border-top: 1px solid #edf2f7;
}

/* Адаптивность */
@media (max-width: 1500px) {
    .reviews-section {
        max-width: 1000px;
    }
}

@media (max-width: 1200px) {
    .reviews-section {
        padding: 1.5rem 1rem;
    }
    
    .review-item {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating {
        margin-top: 0.5rem;
    }
    
    .review-header h3 {
        font-size: 1rem;
    }
    
    .comment {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 1rem 0.5rem;
        width: 100%;
    }
    
    .review-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .review-footer {
        font-size: 0.85rem;
    }
}