-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
164 lines (138 loc) · 5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Health Advice Group</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Styles -->
<style>
:root {
--primary-color: #2C7A7B;
--secondary-color: #ffffff;
--accent-color: #38B2AC;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
.navbar {
background-color: #2C7A7B;
}
.navbar-brand,
.nav-link {
color: #ffffff !important;
}
.navbar-brand:hover,
.nav-link:hover {
color: #38B2AC !important;
}
.container {
max-width: 800px;
margin: 50px auto;
background: #fff;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
text-align: center;
}
h2 {
margin-top: 30px;
font-size: 1.5rem;
}
ul {
margin: 20px 0;
padding-left: 20px;
}
footer {
background-color: #2C7A7B;
color: #ffffff;
text-align: center;
padding: 20px 0;
margin-top: 30px;
}
footer a {
color: #ffffff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Navigation Bar Styling */
nav {
background-color: var(--primary-color);
padding: 10px 20px;
}
nav a {
color: var(--secondary-color);
text-decoration: none;
margin: 0 15px;
font-size: 1.1rem;
}
nav a:hover {
color: var(--accent-color);
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<a href="index.html">Home</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Log In</a>
</nav>
<div class="container">
<h1>Privacy Policy</h1>
<p>
Welcome to Health Advice Group. We are committed to protecting your personal information and respecting your privacy. This Privacy Policy outlines how we collect, use, and protect your personal data when you visit or interact with our website and services.
</p>
<h2>1. Information We Collect</h2>
<p>We may collect the following types of information when you use our services:</p>
<ul>
<li><strong>Personal Information:</strong> Information such as your name, email address, and location when you sign up or interact with our services.</li>
<li><strong>Health Information:</strong> Information you voluntarily provide related to your health, preferences, or conditions for personalized advice.</li>
<li><strong>Technical Data:</strong> Information such as IP addresses, browser types, and usage statistics to improve our services.</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>Your personal data may be used for the following purposes:</p>
<ul>
<li>Providing personalized health advice and recommendations based on your input.</li>
<li>Improving and optimizing our platform based on your interactions.</li>
<li>Communicating updates, new features, promotions, or changes to our services.</li>
</ul>
<h2>3. How We Protect Your Information</h2>
<p>
We implement various security measures to safeguard your personal data, including encrypted connections, regular updates to our systems, and strict access controls to sensitive information.
</p>
<h2>4. Sharing Your Information</h2>
<p>
We do not sell, trade, or rent your personal information to third parties. However, we may share your data with trusted partners to enhance our services, provided they adhere to confidentiality agreements and data protection standards.
</p>
<h2>5. Your Rights</h2>
<p>
You have the right to access, update, or delete your personal information at any time. If you wish to exercise these rights, please contact us at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<h2>6. Updates to This Privacy Policy</h2>
<p>
We may update this Privacy Policy to reflect changes in our practices or for legal, operational, or regulatory reasons. Any changes will be posted on this page with an updated date.
</p>
<p>Last updated: January 22, 2025</p>
</div>
<!-- Footer -->
<footer>
<p>© 2025 Health Advice Group. <a href="index.html">Home</a> | <a href="terms.html">Terms & Conditions</a></p>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>