/* ============================================
   БЛОК ЗАЩИТЫ ДАННЫХ - PRIVACY NOTICE
   Критически важен для модерации банка
   ============================================ */

.privacy-notice {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
    border-top: 3px solid #0066FF;
    border-bottom: 3px solid #0066FF;
}

.privacy-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.privacy-icon {
    font-size: 80px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.privacy-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.privacy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.privacy-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.privacy-point:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #00C853;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.privacy-point p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.privacy-point strong {
    color: #0066FF;
    font-weight: 600;
}

.privacy-footer {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.privacy-footer small {
    font-size: 14px;
    color: #856404;
    font-weight: 500;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .privacy-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .privacy-icon {
        font-size: 60px;
        text-align: center;
        width: 100%;
    }
    
    .privacy-text h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .privacy-point {
        padding: 12px;
    }
    
    .privacy-point p {
        font-size: 14px;
    }
}
