/* Основные стили */
.social-reviews-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.social-links-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 120px;
    box-sizing: border-box;
    text-align: center;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-text {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
}

/* Цвета блоков */
.social-link.vk {
    background: linear-gradient(135deg, #4a76a8, #5b88bd);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #5df07d);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00aced);
}

/* Адаптивность */
@media (max-width: 768px) {
    .social-links-container {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}