Privacy Policy

Last updated: September 26, 2025

1. Introduction

Milano Elite Agency ("we", "our", or "us") respects your privacy and is committed to protecting your personal data. This Privacy Policy explains how we collect, use, and safeguard your information when you visit our website milano-elite-agency.com (the "Site").

2. Information We Collect

We may collect the following types of information:

3. How We Use Your Information

We use your data to:

We do not sell your personal data to third parties.

4. Data Sharing and Security

We may share data with:

We implement reasonable security measures to protect your data, but no system is 100% secure.

5. Your Rights

Under applicable laws (e.g., GDPR), you have the right to:

Contact us to exercise these rights.

6. Cookies and Tracking

Our Site uses cookies for functionality and analytics. You can opt out via browser settings or by not accepting cookies.

7. Children's Privacy

Our Site is not intended for children under 16. We do not knowingly collect data from minors.

8. Changes to This Policy

We may update this Policy. Changes will be posted here with the updated date. Continued use of the Site constitutes acceptance.

9. Contact Us

// Предпросмотр загруженных фото const photoInput = document.getElementById('photos'); const photoPreview = document.getElementById('photo-preview'); if (photoInput && photoPreview) { photoInput.addEventListener('change', function() { photoPreview.innerHTML = ''; // Очищаем предыдущий предпросмотр const files = this.files; if (files.length > 5) { alert('Максимум 5 фото!'); this.value = ''; // Сбрасываем выбор return; } for (let i = 0; i < files.length; i++) { const file = files[i]; if (file.type.startsWith('image/')) { const reader = new FileReader(); reader.onload = function(e) { const img = document.createElement('img'); img.src = e.target.result; img.alt = 'Preview'; photoPreview.appendChild(img); }; reader.readAsDataURL(file); } } }); }