| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Privacy Policy | Pixel Perfect Undress Wizard</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| .gradient-bg { |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| } |
| </style> |
| </head> |
| <body class="gradient-bg min-h-screen text-white"> |
| <div class="container mx-auto px-4 py-12"> |
| <header class="text-center mb-8"> |
| <h1 class="text-4xl font-bold mb-4">Privacy Policy</h1> |
| <a href="index.html" class="inline-flex items-center text-purple-300 hover:text-white transition"> |
| <i data-feather="arrow-left"></i> |
| <span class="ml-2">Back to Editor</span> |
| </a> |
| </header> |
|
|
| <main class="max-w-3xl mx-auto bg-white/10 backdrop-blur-lg rounded-xl p-8 shadow-2xl"> |
| <div class="prose prose-invert max-w-none"> |
| <h2>1. Data Collection</h2> |
| <p>We do not store any images you upload to our service. All processing happens locally in your browser and no data is sent to our servers.</p> |
|
|
| <h2>2. Cookies</h2> |
| <p>We use only essential cookies for basic site functionality. No tracking cookies are used.</p> |
|
|
| <h2>3. Analytics</h2> |
| <p>We collect anonymous usage statistics to improve our service, but this data cannot be tied to individual users.</p> |
|
|
| <h2>4. Third Parties</h2> |
| <p>We do not share any user data with third parties as we don't collect any personal data.</p> |
|
|
| <h2>5. Security</h2> |
| <p>Our service is designed with privacy in mind. Since processing happens in your browser, your images never leave your device.</p> |
|
|
| <h2>6. Children's Privacy</h2> |
| <p>Our service is not intended for users under 18. We do not knowingly collect any information from children.</p> |
|
|
| <p class="mt-8 text-sm opacity-80">Last updated: June 2023</p> |
| </div> |
| </main> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |