/* Стили для красивого дизайна отзывов */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 70vh;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    color: var(--blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
}

.reviews-subtitle {
    color: #6c757d;
    font-size: 18px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 186, 38, 0.1);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), #6bbd45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(128, 186, 38, 0.3);
}

.review-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.review-organization {
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.review-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(128, 186, 38, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-download:hover {
    background: var(--green);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.review-download svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.review-download:hover svg {
    transform: translateX(3px);
}

.reviews-empty {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.reviews-empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.reviews-empty-icon svg {
    width: 50px;
    height: 50px;
    fill: #adb5bd;
}

.reviews-empty h3 {
    color: var(--blue);
    font-size: 24px;
    margin-bottom: 15px;
}

.reviews-empty p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 30px 25px;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-organization {
        font-size: 18px;
    }
}