-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
117 lines (117 loc) · 4.95 KB
/
privacy-policy.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Flowbaba</title>
<link href="https://fonts.googleapis.com/css2?family=Sriracha&family=Wotfard:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Wotfard', sans-serif;
margin: 0;
background: linear-gradient(120deg, #E3FDF5, #FFE6FA);
color: #222;
overflow-x: hidden;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
line-height: 1.6;
}
.logo-section {
text-align: center;
margin: 20px 0;
}
.logo-section img {
height: 150px;
display: block;
margin: 0 auto;
}
.logo-section p {
font-style: italic;
font-size: 1.2rem;
color: #343434;
margin-top: 5px;
}
.content {
margin: 20px auto;
max-width: 800px;
padding: 20px;
background: white;
border-radius: 12px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
font-family: 'Wotfard', sans-serif;
color: #343434;
}
p {
font-size: 1rem;
color: #555;
}
ul {
margin-left: 20px;
}
.footer-section {
text-align: center;
padding: 20px;
margin-top: 40px;
}
.footer-section p {
font-family: 'Cartograph CF', monospace;
font-size: 0.9rem;
color: #555;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
color: #1d5579;
}
</style>
</head>
<body>
<div class="logo-section">
<a href="https://flowbaba.co">
<img src="./assets/flowbaba-logo.png" alt="Flowbaba Logo">
</a>
<p>Flow with it!</p>
</div>
<div class="content">
<h1>Privacy Policy</h1>
<h2>Introduction</h2>
<p>At Flowbaba, we respect your privacy and are committed to protecting your personal data. This Privacy Policy outlines how we collect, use, and protect your information when you use our services.</p>
<h2>What Information We Collect</h2>
<ul>
<li><strong>Location Data:</strong> We collect your location information to provide accurate weather forecasts.</li>
<li><strong>Contact Information:</strong> We may collect your email address or phone number if you choose to share it for customer support or feedback purposes.</li>
</ul>
<h2>How We Use Your Data</h2>
<ul>
<li>To provide accurate and location-based weather forecasts for paragliding.</li>
<li>Deliver weather forecasts specific to your location.</li>
<li>To respond to your inquiries, feedback and provide customer support.</li>
<li>To improve our services based on usage patterns and user feedback.</li>
<li>Improve our forecasting algorithms and services.</li>
</ul>
<h2>Sharing Your Information</h2>
<p>We do not sell, trade, or rent your personal information to others. We may share your information with trusted third-party service providers who assist us in delivering our services. These providers are obligated to keep your information confidential.</p>
<h2>Your Rights</h2>
<p>You have the right to access, modify, or delete the personal information we have about you. You can contact us at <a href="mailto:[email protected]">[email protected]</a> to exercise these rights.</p>
<h2>Data Security</h2>
<p>We use advanced encryption and data security measures to protect your information. However, no method of transmission over the internet is completely secure, and we cannot guarantee absolute security.</p>
<h2>Cookies</h2>
<p>We use cookies to enhance your browsing experience. By using our website, you agree to our use of cookies as outlined in our Cookie Policy.</p>
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page, and your continued use of our services constitutes acceptance of the updated policy.</p>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about our Privacy Policy, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
<div class="footer-section">
<p>© <span id="current-year"></span> Flowbaba. Riding thermals and chasing clouds.</p>
<a href="terms-of-service.html">Terms of Service</a>
</div>
<script>
document.getElementById('current-year').textContent = new Date().getFullYear();
</script>
</body>
</html>