/* Стили для секции отзывов */

.section-title-reviews {
    text-align: center;
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #6B46C1;
    font-weight: 700;
}

.reviews {
    padding: 20px 0;
    background: #FAFBFF;
}

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

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(124,58,237,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(124,58,237,0.2);
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: #6B46C1;
    margin-bottom: 2px;
}

.review-position {
    font-size: 14px;
    color: #6B7280;
}

.review-text {
    font-style: italic;
    color: #4B5563;
    line-height: 1.6;
    font-size: 16px;
}

.review-footer {
    text-align: center;
    margin-top: 40px;
}

.review-footer p {
    margin-bottom: 20px;
    color: #6B7280;
    font-size: 16px;
}