| <!DOCTYPE html> |
| <html lang="en"> |
|
|
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Privacy Policy - Fraudoo</title> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet"> |
| <style> |
| :root { |
| --primary: #10b981; |
| --secondary: #3b82f6; |
| --bg: #f8fafc; |
| --text: #1e293b; |
| } |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%); |
| color: var(--text); |
| margin: 0; |
| padding: 2rem; |
| display: flex; |
| justify-content: center; |
| } |
| |
| .container { |
| background: rgba(255, 255, 255, 0.9); |
| backdrop-filter: blur(10px); |
| padding: 3rem; |
| border-radius: 20px; |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); |
| max-width: 800px; |
| width: 100%; |
| line-height: 1.6; |
| } |
| |
| h1 { |
| color: var(--primary); |
| text-align: center; |
| margin-bottom: 2rem; |
| } |
| |
| h2 { |
| color: var(--secondary); |
| margin-top: 2rem; |
| } |
| |
| .back-btn { |
| display: inline-block; |
| margin-top: 2rem; |
| padding: 0.75rem 1.5rem; |
| background: var(--text); |
| color: white; |
| text-decoration: none; |
| border-radius: 10px; |
| font-weight: 600; |
| } |
| </style> |
| </head> |
|
|
| <body> |
| <div class="container"> |
| <h1>🐢 Privacy Policy</h1> |
| <p>Last Updated: February 11, 2026</p> |
|
|
| <h2>1. Data Collection</h2> |
| <p>At Fraudoo, we prioritize the privacy of your sensitive documents. When you upload a document for analysis, |
| the file is processed locally and sent to LLM Services APIs for visual and textual analysis.</p> |
|
|
| <h2>2. Use of Documents</h2> |
| <p>Documents are stored in a local <code>uploads/</code> directory on your host machine to enable historical |
| retrieval. We do not transmit this data to any third party other than the necessary API calls to Google for |
| analysis.</p> |
|
|
| <h2>3. Data Deletion</h2> |
| <p>Users have the right to delete their analysis history at any time using the dashboard's delete feature, which |
| removes both the database record and the stored file.</p> |
|
|
| <h2>4. Third-Party Services</h2> |
| <p>The analysis is powered by LLM Services. Please refer to <a href="https://policies.google.com/privacy" |
| target="_blank">Google's Privacy Policy</a> for details on how they handle data processed through their |
| AI models.</p> |
|
|
| <a href="/" class="back-btn">← Back to App</a> |
| </div> |
| </body> |
|
|
| </html> |