-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
200 lines (175 loc) · 5.72 KB
/
privacy.html
File metadata and controls
200 lines (175 loc) · 5.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Skunkworks Academy</title>
<link href="https://unpkg.com/carbon-components/css/carbon-components.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--primary-color: #000;
--accent-color: #0f62fe;
--hover-color: #0353e9;
--bg-color: #f4f4f4;
--card-bg: #ffffff;
--text-color: #161616;
--transition-speed: 0.3s;
}
[data-theme="dark"] {
--bg-color: #161616;
--card-bg: #262626;
--text-color: #ffffff;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'IBM Plex Sans', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
line-height: 1.6;
}
header {
background-color: var(--primary-color);
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}
.main-content {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background-color: var(--card-bg);
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: var(--accent-color);
margin-bottom: 2rem;
font-size: 2.5rem;
}
h2 {
color: var(--accent-color);
margin: 2rem 0 1rem;
font-size: 1.8rem;
}
p {
margin-bottom: 1rem;
}
ul {
margin-bottom: 1rem;
padding-left: 2rem;
}
li {
margin-bottom: 0.5rem;
}
.section {
margin-bottom: 2rem;
}
.last-updated {
font-style: italic;
color: #666;
margin-top: 3rem;
padding-top: 1rem;
border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
.main-content {
padding: 1rem;
margin: 1rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<header>
<div class="header-content">
<a href="/" class="logo">
<i class="fas fa-graduation-cap"></i>
Skunkworks Academy
</a>
</div>
</header>
<div class="main-content">
<h1>Privacy Policy</h1>
<div class="section">
<h2>Introduction</h2>
<p>Skunkworks Academy ("we," "our," or "us") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and use our educational services.</p>
</div>
<div class="section">
<h2>Information We Collect</h2>
<p>We collect information that you provide directly to us, including:</p>
<ul>
<li>Name and contact information</li>
<li>Account credentials</li>
<li>Course enrollment and progress data</li>
<li>Payment information</li>
<li>Communications with us</li>
</ul>
</div>
<div class="section">
<h2>How We Use Your Information</h2>
<p>We use the information we collect to:</p>
<ul>
<li>Provide and improve our educational services</li>
<li>Process your transactions</li>
<li>Send you updates about your courses</li>
<li>Respond to your inquiries</li>
<li>Maintain and improve our website</li>
<li>Comply with legal obligations</li>
</ul>
</div>
<div class="section">
<h2>Data Security</h2>
<p>We implement appropriate technical and organizational measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction.</p>
</div>
<div class="section">
<h2>Your Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access your personal information</li>
<li>Correct inaccurate data</li>
<li>Request deletion of your data</li>
<li>Object to our processing of your data</li>
<li>Receive a copy of your data</li>
</ul>
</div>
<div class="section">
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p>Email: privacy@skunkworks.africa</p>
<p>Address: Skunkworks Academy, Johannesburg, South Africa</p>
</div>
<p class="last-updated">Last updated: December 8, 2024</p>
</div>
</body>
</html>