-
Notifications
You must be signed in to change notification settings - Fork 0
/
Privacy.cshtml
113 lines (96 loc) · 4.92 KB
/
Privacy.cshtml
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
@{
ViewData["Title"] = "Privacy Policy - Lie Detector";
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewData["Title"]</title>
<style>
/* Global Styles for Privacy Policy Page */
.privacy-policy-container {
width: 70%;
margin: 0 auto;
padding: 2rem;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
}
h2 {
font-size: 2rem;
color: #0056b3;
margin-bottom: 1.5rem;
}
h3 {
font-size: 1.5rem;
color: #333;
margin-top: 1.5rem;
}
p {
font-size: 1rem;
margin-bottom: 1.5rem;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
a {
color: #0056b3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Additional Styling for Small Screens */
media (max-width: 768px) {
.privacy-policy-container {
width: 90%;
padding: 1rem;
}
}
</style>
</head>
<body>
<div class="privacy-policy-container">
<h2>Privacy Policy</h2>
<p>At Lie Detector Corp., we are committed to safeguarding your privacy. This Privacy Policy outlines how we collect, use, store, and protect your personal information when you engage with our services. By using our services, you consent to the practices described in this policy.</p>
<h3>1. Information We Collect</h3>
<p>In order to deliver accurate and reliable lie detection services, we collect the following information:</p>
<ul>
<li><strong>Heart Rate:</strong> Monitored to evaluate physiological responses during the testing process.</li>
<li><strong>Galvanic Skin Response (GSR):</strong> Used to assess emotional and psychological responses during the assessment.</li>
</ul>
<h3>2. How We Use Your Data</h3>
<p>We use your data exclusively to provide accurate lie detection results. The collected data allows us to:</p>
<ul>
<li>Analyze physiological patterns such as heart rate and GSR to detect signs of stress or deception.</li>
<li>Generate a reliable lie detection result based on the combination of the physiological data.</li>
<li>Offer you personalized feedback and recommendations derived from the analysis.</li>
</ul>
<p>Your data is never used for any purposes beyond the scope of lie detection services.</p>
<h3>3. Data Security</h3>
<p>Your data is stored securely using industry-standard encryption protocols to protect against unauthorized access, alteration, or disclosure. While we take comprehensive security measures, no data transmission or storage method can be guaranteed 100% secure.</p>
<h3>4. Data Retention</h3>
<p>We retain your data only as long as necessary to fulfill the purposes of the services you requested. Once the data is no longer needed, it will be permanently deleted from our systems.</p>
<h3>5. Data Sharing</h3>
<p>We do not share, sell, or disclose your data to third parties for marketing purposes or any other reasons. Your privacy is our top priority, and your data will only be used in relation to the services you request.</p>
<h3>6. Your Rights</h3>
<p>You have the right to access, update, or delete any personal data we have collected. To exercise these rights, please contact us directly at <a href="mailto:[email protected]">[email protected]</a>.</p>
<h3>7. Changes to This Policy</h3>
<p>We may update this Privacy Policy periodically to reflect changes in our practices or legal requirements. When we update this policy, the revision date at the top of the page will be modified. We encourage you to review this policy periodically to stay informed about how we are safeguarding your information.</p>
<h3>8. Contact Us</h3>
<p>If you have any questions regarding this Privacy Policy or how we handle your data, please do not hesitate to contact us:</p>
<p>
<strong>Lie Detector Corp.</strong><br>
Email: <a href="mailto:[email protected]">[email protected]</a><br>
Phone: 1-800-123-4567<br>
Address: 00056, Silicon Valley, Bangalore, KA, India.
</p>
<p>By using our services, you acknowledge and consent to the terms outlined in this Privacy Policy.</p>
</div>
</body>
</html>