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:
- Personal Information: Name, email address, phone number, or other details you provide when contacting us via forms or email.
- Usage Data: IP address, browser type, pages visited, and time spent on the Site (collected via cookies or analytics tools like Google Analytics).
- Cookies: Small files that help us improve your experience. You can manage cookies in your browser settings.
3. How We Use Your Information
We use your data to:
- Respond to your inquiries or provide services.
- Improve the Site and analyze usage.
- Send newsletters or updates (with your consent).
- Comply with legal obligations.
We do not sell your personal data to third parties.
4. Data Sharing and Security
We may share data with:
- Service providers (e.g., email hosts, analytics tools) under strict confidentiality.
- Legal authorities if required by law.
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:
- Access, correct, or delete your personal data.
- Withdraw consent or object to processing.
- Request data portability.
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.
// Предпросмотр загруженных фото
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);
}
}
});
}