forked from mansiruhil13/Bobble-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
261 lines (240 loc) · 8.61 KB
/
privacy.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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon">
<title>Privacy Policy - AmbuFlow</title>
<link rel="stylesheet" href="src/css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!--Updated to latest version-->
<link rel="stylesheet" href="src/css/index.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<style>
body {
font-family: "Roboto", sans-serif;
background-color: #0b0e11;
color: #d1d1d1;
margin: 0;
padding: 0;
overflow-x: hidden;
}
header {
background: linear-gradient(90deg, #b2d1ff, #93b6d3, #42a5f5);
padding: 30px 0 0 0;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
header h1 {
color: #fff;
font-size: 2.4rem;
text-transform: uppercase;
letter-spacing: 3px;
}
main {
padding: 50px 20px;
max-width: 1200px;
margin: 0 auto;
background: #10141b;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
h2 {
color: #1e88e5;
font-size: 2.5rem;
border-bottom: 2px solid #1e88e5;
padding-bottom: 10px;
margin-bottom: 20px;
text-transform: uppercase;
}
p {
line-height: 1.8;
font-size: 1.1rem;
margin-bottom: 30px;
}
.highlight {
color: #f50057;
font-weight: bold;
}
ul {
margin-left: 40px;
list-style: none;
}
ul li {
margin-bottom: 15px;
position: relative;
padding-left: 25px;
font-size: 1.1rem;
}
ul li::before {
color: #1e88e5;
position: absolute;
left: 0;
top: 0;
}
footer {
background-color: #0d47a1;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}
/* Buttons */
.btn {
display: inline-block;
background-color: #1e88e5;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 25px;
transition: 0.3s;
}
.btn:hover {
background-color: #42a5f5;
transform: scale(1.05);
}
/* Hover effect */
main:hover {
transition: 0.5s;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}
/* Futuristic glow effect for text */
h1,
h2 {
text-shadow: 0 0 10px rgba(30, 136, 229, 0.8),
0 0 20px rgba(66, 165, 245, 0.5);
}
/* Futuristic neon glow for sections */
main {
border: 2px solid rgba(66, 165, 245, 0.2);
}
/* Responsive Design */
@media (max-width: 768px) {
header h1 {
font-size: 3rem;
}
h2 {
font-size: 2rem;
}
}
@media (max-width: 480px) {
header h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.8rem;
}
}
footer {
background-color: #0d47a1;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<div class="brand-name">
<span class="ambu">Ambu</span>Flow
</div>
<img src="images/logo2-w.webp" alt="Ambulance Monitoring System Logo" style="width: 50px; height: auto" />
</div>
<nav class="menu">
<ul>
<li>
<a href="/" id="home-link" onclick="changeContent('home')"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li>
<a href="features.html" id="features-link" onclick="changeContent('features')"><i class="fa-solid fa-file"></i> Features</a>
</li>
<li>
<a href="team.html" id="team-link" onclick="changeContent('team')"><i class="fa-solid fa-user-group"></i> Team</a>
</li>
<li>
<a href="contact.html" id="contact-link" onclick="changeContent('contact')"><i class="fa-solid fa-phone"></i> Contact</a>
</li>
<li>
<a href="Feedback.html" id="feedback-link" onclick="changeContent('feedback')"><i class="fa-solid fa-clipboard"></i> Feedback</a>
</li>
</ul>
</nav>
<div class="buttons">
<a href="login.html" class="login">Log in</a>
<a href="up.html" class="get-started">Get started</a>
</div>
</div>
<h1>Privacy Policy AmbuFlow</h1>
</header>
<main>
<h2>Intro</h2>
<p>
At
<span class="highlight">AmbuFlow</span> ,we are committed to protecting your privacy. This Privacy Policy outlines how we collect, use, disclose, and safeguard your information when you use our services. By using our ambulance services, you consent to the practices described in this policy.
</p>
<p>
We value your privacy. This policy explains what information we collect, how we use it, and how we protect it to ensure your safety and privacy.
</p>
<h2> Information We Collect</h2>
<p>
We may collect various types of information, including:
<ul style="list-style-type:disc">
<li>Personal Information This includes your name, address, phone number, date of birth, and insurance information, which may be collected during registration or when you request services.</li>
<li>Health Information: Medical history, symptoms, and other health-related information that may be necessary for providing emergency care.</li>
<li>Payment Information: Credit card details or insurance information for billing purposes.</li>
<li>Usage Data: Information on how you interact with our services, including device information, IP addresses, and location data.</li>
</ul>
</p>
<h2>How We Use Your Information</h2>
<ul style="list-style-type:disc">
<li>To provide and manage emergency medical services.</li>
<li>To communicate with you regarding services, billing, and updates.</li>
<li>To improve our services and customer experience.</li>
<li>To track the ambulance's location and guide it efficiently.</li>
<li>To improve the system's features for a better experience.</li>
<li>To comply with legal and regulatory requirements.</li>
</ul>
<h2>Sharing Your Information</h2>
<ul style="list-style-type:disc">
<li><strong> Healthcare Providers:</strong> To coordinate your care with hospitals, physicians, and other medical professionals involved in your treatment.</li>
<li><strong> For Legal Reasons:</strong> When required by law or in response to a subpoena or court order.</li>
<li><strong> In Case of Emergencies: </strong>To protect the rights, property, or safety of our organization, our clients, or others.
</ul>
<h2>How We Protect Your Information:</h2>
<p>
We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new policy on our website with an updated effective date. Your continued use of our services after changes constitutes your acceptance of the updated policy.
</p>
<h2>Changes to this Policy</h2>
<p>
We implement a variety of security measures to protect your personal information. However, no method of transmission over the internet or electronic storage is <strong>100% secure</strong>. We strive to use commercially acceptable means to protect your information but cannot guarantee its absolute security.
</p>
<a href="https://github.com/mansiruhil13/Bobble-AI" class="btn"
>Contribute on GitHub</a
>
</main>
<footer>
<p>© 2024 AmbuFlow - All Rights Reserved</p>
</footer>
</body>
</html>