-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
421 lines (408 loc) · 14.5 KB
/
Copy pathprivacy-policy.html
File metadata and controls
421 lines (408 loc) · 14.5 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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MediChain | Privacy Policy</title>
<link rel="icon" href="assets/favicon.png" type="image/png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #000000;
--primary-dark: #333333;
--secondary: #666666;
--dark: #000000;
--light: #f5f5f5;
--gray: #757575;
}
* {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
body {
overflow-x: hidden;
}
.bg-primary-custom {
background-color: var(--primary);
}
.text-primary-custom {
color: var(--primary);
}
.btn-primary-custom {
background-color: var(--primary);
color: white;
border: none;
transition: all 0.3s ease;
}
.btn-primary-custom:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-outline-primary-custom {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
transition: all 0.3s ease;
}
.btn-outline-primary-custom:hover {
background-color: var(--primary);
color: white;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.navbar {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px 0;
background-color: white;
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: var(--primary);
}
.nav-link {
font-weight: 500;
color: var(--dark) !important;
margin: 0 10px;
position: relative;
transition: all 0.3s ease;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
background-color: var(--primary);
bottom: 0;
left: 0;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.hero {
background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
padding: 120px 0 100px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.05);
top: -100px;
right: -100px;
z-index: 0;
}
.hero::after {
content: '';
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.03);
bottom: -50px;
left: -50px;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 1;
}
.hero-title {
font-weight: 700;
font-size: 3.5rem;
margin-bottom: 20px;
color: var(--dark);
}
.hero-description {
font-size: 1.2rem;
color: var(--gray);
margin-bottom: 30px;
max-width: 80%;
}
.section-title {
font-weight: 700;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark);
position: relative;
padding-bottom: 15px;
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary);
}
footer {
background-color: var(--dark);
color: white;
padding: 50px 0 20px;
}
.footer-links h5 {
font-weight: 600;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-links h5::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background-color: white;
}
.footer-links ul {
list-style: none;
padding-left: 0;
}
.footer-links ul li {
margin-bottom: 10px;
}
.footer-links ul li a {
color: #ddd;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links ul li a:hover {
color: white;
text-decoration: none;
padding-left: 5px;
}
.social-links a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
text-align: center;
line-height: 40px;
margin-right: 10px;
transition: all 0.3s ease;
}
.social-links a:hover {
background-color: white;
color: black;
transform: translateY(-3px);
}
.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
margin-top: 50px;
text-align: center;
color: #aaa;
}
/* Additional styling for Privacy Policy sections */
.privacy-section {
padding: 80px 0;
}
.privacy-section h3 {
font-weight: 600;
margin-top: 40px;
color: var(--primary);
}
.privacy-section p {
margin-bottom: 20px;
line-height: 1.6;
color: var(--gray);
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">MediChain</a>
<div class="d-flex gap-3">
<button class="btn btn-primary-custom px-4 d-lg-none ms-2" onclick="window.location.href='auth.html'">Login</button>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#how-it-works">How It Works</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#benefits">Benefits</a></li>
<li class="nav-item"><a class="nav-link" href="index.html#team">Team</a></li>
<li class="nav-item ms-3 d-none d-lg-block">
<button class="btn btn-primary-custom px-4" onclick="window.location.href='auth.html'">Login</button>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section for Privacy Policy -->
<section class="hero" id="privacy-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 text-center hero-content d-flex justify-content-center flex-column align-items-center">
<h1 class="hero-title">Privacy Policy</h1>
<p class="hero-description">Your privacy is our priority. Read our detailed privacy policy to learn how we protect your personal data and ensure transparency in our operations.</p>
</div>
</div>
</div>
</section>
<!-- Privacy Policy Details -->
<section class="privacy-section">
<div class="container">
<h2 class="text-center section-title">Our Privacy Practices</h2>
<p>MediChain is committed to maintaining the confidentiality and security of your personal data. This privacy policy outlines the types of information we collect, how we use it, the measures we take to protect your information, and your rights regarding your data.</p>
<!-- Section: Information Collection -->
<h3>Information Collection</h3>
<p>
We collect information when you register on our platform, use our services, or interact with our website. The types of data we collect include:
</p>
<ul>
<li><strong>Personal Information:</strong> Name, email address, phone number, and other contact details provided during registration and login.</li>
<li><strong>Transaction Data:</strong> Details regarding pharmaceutical transactions, including drug registration, purchase information, and ownership transfers processed by our blockchain system.</li>
<li><strong>Technical Data:</strong> IP addresses, browser types, access times, and other diagnostic data collected automatically when you visit our site.</li>
<li><strong>IoT and Sensor Data:</strong> For supply chain tracking, environmental conditions (such as temperature and humidity) and geolocation data from IoT devices are recorded to ensure product integrity.</li>
</ul>
<!-- Section: Use of Information -->
<h3>Use of Information</h3>
<p>
Your information is used for the following purposes:
</p>
<ul>
<li>To facilitate user registration and secure authentication.</li>
<li>To process and record pharmaceutical transactions through our blockchain.</li>
<li>To monitor supply chain conditions and trigger automated alerts for deviations.</li>
<li>To provide a seamless and personalized user experience on our platform.</li>
<li>To comply with regulatory requirements and ensure data integrity.</li>
</ul>
<!-- Section: Data Security -->
<h3>Data Security</h3>
<p>
We implement robust security measures to protect your data from unauthorized access, alteration, disclosure, or destruction. These measures include:
</p>
<ul>
<li>Encryption of sensitive information both in transit and at rest.</li>
<li>Storing critical transaction records on an immutable blockchain ledger.</li>
<li>Regular security audits and continuous monitoring of system vulnerabilities.</li>
<li>Strict access controls ensuring that only authorized personnel have access to sensitive data.</li>
</ul>
<!-- Section: Cookies and Tracking -->
<h3>Cookies and Tracking</h3>
<p>
Our website uses cookies and similar technologies to enhance your user experience and analyze site usage. These technologies help us understand user behavior and improve our services. You can control cookie preferences through your browser settings.
</p>
<!-- Section: User Rights -->
<h3>Your Rights</h3>
<p>
You have the right to access, correct, update, or request deletion of your personal information. If you have any questions regarding your data or wish to exercise your rights, please contact us at the address provided in the Contact section below.
</p>
<!-- Section: Changes to This Privacy Policy -->
<h3>Changes to This Privacy Policy</h3>
<p>
We may update our privacy policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We encourage you to review this page periodically for the latest information on our privacy practices.
</p>
<!-- Section: Contact Information -->
<h3>Contact Information</h3>
<p>
If you have any questions or concerns about this privacy policy or our treatment of your personal data, please contact us:
</p>
<ul>
<li><strong>Email:</strong> noreply.medichain@gmail.com</li>
</ul>
<p>
By using MediChain’s services, you acknowledge that you have read and understood this privacy policy.
</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4">
<h3 class="text-white mb-4">MediChain</h3>
<p>Transforming pharmaceutical supply chains with blockchain technology for enhanced security, transparency, and efficiency.</p>
<div class="social-links mt-3">
<a href="https://github.com/ThisIs-Developer/MediChain"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="col-lg-2 col-md-4 mb-4">
<div class="footer-links">
<h5>Quick Links</h5>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#how-it-works">How It Works</a></li>
<li><a href="index.html#benefits">Benefits</a></li>
<li><a href="index.html#team">Team</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 mb-4">
<div class="footer-links">
<h5>Support</h5>
<ul>
<li><a href="help-center.html">Help Center</a></li>
<li><a href="help-center.html#faq">FAQ</a></li>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-of-service.html">Terms & Conditions</a></li>
</ul>
</div>
</div>
</div>
<div class="copyright">
<p>© 2025 MediChain. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<!-- Smooth Scrolling Script -->
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
// Close navbar collapse on mobile when link is clicked
const navbarCollapse = document.querySelector('.navbar-collapse');
if (navbarCollapse.classList.contains('show')) {
navbarCollapse.classList.remove('show');
}
});
});
// Navbar background change on scroll
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.style.padding = '10px 0';
navbar.style.boxShadow = '0 4px 6px rgba(0, 0, 0, 0.1)';
} else {
navbar.style.padding = '15px 0';
navbar.style.boxShadow = 'none';
}
});
</script>
</body>
</html>