-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
60 lines (52 loc) · 3.33 KB
/
Copy pathprivacy.html
File metadata and controls
60 lines (52 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | A·chik Learn</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root { --primary: #2563EB; --bg: #F3F4F6; --surface: #FFFFFF; --text: #1F2937; --text-sub: #6B7280; --border: #E5E7EB; }
body { font-family: 'Inter', sans-serif; background: var(--bg); margin: 0; color: var(--text); }
.app-header { background: var(--surface); padding: 15px 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px; position: sticky; top: 0; }
.back-btn { background: none; border: none; font-size: 1.2rem; color: var(--text); cursor: pointer; }
.page-title { font-weight: 700; font-size: 1.2rem; color: var(--primary); }
.content { max-width: 800px; margin: 20px auto; padding: 25px; background: var(--surface); border-radius: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
h1 { font-size: 1.5rem; margin-bottom: 10px; }
h2 { font-size: 1.1rem; margin-top: 25px; color: var(--primary); }
p { line-height: 1.6; color: var(--text-sub); margin-bottom: 15px; }
ul { color: var(--text-sub); line-height: 1.6; padding-left: 20px; }
</style>
</head>
<body>
<header class="app-header">
<button class="back-btn" onclick="window.location.href='index.html'"><i class="fas fa-arrow-left"></i></button>
<div class="page-title">Privacy Policy</div>
</header>
<div class="content">
<h1>Privacy Policy</h1>
<p>Last updated: January 31, 2026</p>
<h2>1. Introduction</h2>
<p>Welcome to A·chik Learn. We respect your privacy and are committed to protecting your personal data. This privacy policy will inform you as to how we look after your personal data when you visit our application.</p>
<h2>2. Data We Collect</h2>
<p>We may collect, use, store and transfer different kinds of personal data about you which we have grouped together follows:</p>
<ul>
<li><strong>Identity Data:</strong> Includes first name, last name, and profile picture.</li>
<li><strong>Contact Data:</strong> Includes email address.</li>
<li><strong>Usage Data:</strong> Includes information about how you use our app, learning progress, and game scores.</li>
</ul>
<h2>3. How We Use Your Data</h2>
<p>We will only use your personal data when the law allows us to. Most commonly, we will use your personal data in the following circumstances:</p>
<ul>
<li>To register you as a new user.</li>
<li>To track your learning progress and rank.</li>
<li>To manage our relationship with you.</li>
</ul>
<h2>4. Data Security</h2>
<p>We have put in place appropriate security measures to prevent your personal data from being accidentally lost, used or accessed in an unauthorized way.</p>
<h2>5. Contact Us</h2>
<p>If you have any questions about this privacy policy, please contact us at support@achiklearn.com.</p>
</div>
</body>
</html>