-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.php
More file actions
51 lines (45 loc) · 2.57 KB
/
Copy pathprivacy.php
File metadata and controls
51 lines (45 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Pastimes®</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
:root { --studio-blue: #0678eb; }
body { font-family: 'Inter', sans-serif; line-height: 1.8; color: #333; }
.navbar-brand { font-weight: 800; font-size: 24px; color: #000 !important; letter-spacing: 1px; text-transform: uppercase; }
.legal-container { max-width: 800px; margin: 80px auto; padding: 0 20px; }
h1 { font-weight: 900; text-transform: uppercase; border-bottom: 2px solid #000; padding-bottom: 10px; margin-bottom: 40px; }
h4 { font-weight: 800; text-transform: uppercase; font-size: 16px; margin-top: 30px; color: var(--studio-blue); }
footer { background-color: #000; padding: 60px 0 40px; color: #fff; }
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg border-bottom sticky-top bg-white">
<div class="container">
<a class="navbar-brand" href="index.php">Pastimes®</a>
<a href="index.php" class="text-dark small fw-bold text-uppercase text-decoration-none">Back to Home</a>
</div>
</nav>
<div class="container legal-container">
<h1>Privacy Policy</h1>
<p class="text-muted">Last Updated: April 2026</p>
<h4>1. Data Collection</h4>
<p>We collect information you provide directly to us when you create an account, make a purchase, or communicate with us. This includes your name, email, and shipping address.</p>
<h4>2. Use of Information</h4>
<p>Your data is used solely to process orders and improve the Pastimes user experience. We do not sell your personal data to third parties.</p>
<h4>3. Security</h4>
<p>As a digital architecture collective, we prioritize your security. All transaction data is handled through encrypted protocols.</p>
</div>
<footer>
<div class="container text-center">
<h5 class="mb-2 uppercase" style="letter-spacing: 2px;">Pastimes</h5>
<div class="pt-3" style="border-top: 1px solid #333; max-width: 240px; margin: 0 auto;">
<p class="mb-1" style="font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: #aaa;">Digital Architecture & Direction</p>
<p class="mb-0"><a href="#" class="text-white text-decoration-none fw-bold" style="letter-spacing: 4px; font-size: 12px;">AMO MATLHAGA</a></p>
</div>
</div>
</footer>
</body>
</html>