-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
107 lines (91 loc) · 3.66 KB
/
privacy.html
File metadata and controls
107 lines (91 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ffffff;
color: #000000;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 40px 80px;
padding: 20px;
}
h1, h2 {
color: #000000;
border-left: 6px solid #003780;
padding-left: 12px;
margin-top: 40px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.3rem;
}
p {
margin-bottom: 16px;
}
.highlight {
color: #003380;
font-weight: bold;
}
@media (max-width: 600px) {
.container {
padding: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p><span class="highlight">Effective Date:</span> 9 July 2025</p>
<p><strong>Aaryan Soni</strong> ("I", "my", or "me") respects your privacy and is committed to protecting any personal information you share with him through this website.</p>
<h2>1. Information I Collect</h2>
<p>When you use my site to submit inquiries and use my services, I may collect the following information:</p>
<ul>
<li>First and Last Name</li>
<li>Email Address</li>
<li>Phone Number</li>
<li>Type of Service Requested</li>
<li>Personal identifiers including gender, race, and demographic info including broad location (continent/country)</li>
<li>Any additional message or information you include</li>
</ul>
<h2>2. How I Use Your Information</h2>
<p>I use the information you provide to:</p>
<ul>
<li>Contact you regarding your inquiry or quote request</li>
<li>Better understand your service needs</li>
<li>Improve my services and customer support</li>
<li>Improve my site and app designs and functions</li>
</ul>
<p>I do <strong>not</strong> sell, rent, or trade your personal information to any third parties, or use your personal information and identifiers to make income.</p>
<h2>3. Email and Communication</h2>
<p>By submitting the form, you consent to being contacted by me regarding any inquiry or updates to this Privacy Policy. I will only use your information for direct communication related to your request.</p>
<h2>4. Data Retention</h2>
<p>I retain the information you provide only as long as necessary to fulfill your request and for basic business records. You may request I delete your information at any time by contacting me.</p>
<h2>5. Security</h2>
<p>I take reasonable steps to protect your personal information, but I cannot guarantee complete security.</p>
<h2>6. Third-Party Links</h2>
<p>My website may contain links to third-party sites. I am not responsible for the privacy practices of those websites.</p>
<h2>7. Changes to This Policy</h2>
<p>I may update this privacy policy from time to time. Any changes will be posted on this page with the updated effective date. Any signed-up user will receive email updates regarding changes to this policy.</p>
<h2>8. Contact Me</h2>
<p>If you have any questions or concerns about this Privacy Policy, please contact me at:</p>
<p><b>
Aaryan Soni<br />
aasoni.dev@gmail.com<br /></b>
<br>
Based in Chicago, IL
</p>
</div>
</body>
</html>