forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie_policy.html
223 lines (188 loc) · 7.06 KB
/
cookie_policy.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
<!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">
<title>Cookie Policy - BuddyTrail</title>
<style>
/* Resetting margin and padding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
/* Full-width container for page */
.container {
display: flex;
width: 100%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
/* Table of contents styling */
.toc {
flex-basis: 25%;
background-color: #e9ecef;
padding: 20px;
border-radius: 8px;
margin-right: 20px;
height: fit-content;
position: sticky;
top: 20px;
}
.toc h2 {
font-size: 1.5rem;
color: #004085;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc ul li {
margin-bottom: 10px;
}
.toc ul li a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
.toc ul li a:hover {
text-decoration: underline;
}
/* Main content styling */
.main-content {
flex-basis: 75%;
}
h1, h2 {
color: #004085;
}
h1 {
font-size: 2.2rem;
text-align: center;
margin-bottom: 30px;
border-bottom: 2px solid #004085;
padding-bottom: 10px;
}
h2 {
font-size: 1.8rem;
margin-top: 40px;
margin-bottom: 20px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
p {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
ul {
margin-left: 20px;
padding-left: 20px;
list-style: disc;
}
li {
margin-bottom: 10px;
}
/* Button styling for links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.toc {
margin-bottom: 20px;
margin-right: 0;
width: 100%;
position: relative; /* Changed to relative to make TOC non-sticky */
}
.main-content {
width: 100%;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.4rem;
}
p {
font-size: 0.95rem;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Table of contents on the left side -->
<div class="toc">
<h2>Table of Contents</h2>
<ul>
<li><a href="#section1">1. What Are Cookies?</a></li>
<li><a href="#section2">2. How We Use Cookies</a></li>
<li><a href="#section3">3. Types of Cookies We Use</a></li>
<li><a href="#section4">4. Managing Cookies</a></li>
<li><a href="#section5">5. Third-Party Cookies</a></li>
<li><a href="#section6">6. Changes to This Cookie Policy</a></li>
<li><a href="#section7">7. Contact Us</a></li>
</ul>
</div>
<!-- Main content on the right side -->
<div class="main-content">
<h1>BuddyTrail - Cookie Policy</h1>
<!-- Cookie Policy sections -->
<h2 id="section1">1. What Are Cookies?</h2>
<p>Cookies are small text files that are stored on your device when you visit a website. They help the website remember information about your visit, which can make it easier to visit the site again and make the site more useful to you.</p>
<h2 id="section2">2. How We Use Cookies</h2>
<p>We use cookies to enhance your browsing experience by:</p>
<ul>
<li>Recognizing you when you return to our website.</li>
<li>Understanding how you use our website, which helps us improve our services.</li>
<li>Displaying personalized content or ads based on your preferences.</li>
</ul>
<h2 id="section3">3. Types of Cookies We Use</h2>
<p>We use both session cookies and persistent cookies on BuddyTrail:</p>
<ul>
<li><strong>Session Cookies:</strong> These cookies are temporary and expire once you close your browser.</li>
<li><strong>Persistent Cookies:</strong> These cookies remain on your device for a set period or until you manually delete them.</li>
</ul>
<h2 id="section4">4. Managing Cookies</h2>
<p>You can control how cookies are used on your device by adjusting your browser settings. Most browsers allow you to:</p>
<ul>
<li>View the cookies that are stored on your device.</li>
<li>Delete all or individual cookies.</li>
<li>Block cookies from specific websites.</li>
<li>Block all cookies from being stored on your device.</li>
</ul>
<p>Please note that if you block cookies, some features of our website may not function as intended.</p>
<h2 id="section5">5. Third-Party Cookies</h2>
<p>We may use third-party services, such as analytics or advertising partners, that set their own cookies on your device when you interact with BuddyTrail. These third-party cookies are subject to their respective privacy policies, and we encourage you to review them.</p>
<h2 id="section6">6. Changes to This Cookie Policy</h2>
<p>We reserve the right to modify this Cookie Policy at any time. Any changes will be posted on this page, and the updated policy will take effect upon posting. We encourage you to check this page periodically to stay informed about our use of cookies.</p>
<h2 id="section7">7. Contact Us</h2>
<p>If you have any questions or concerns about this Cookie Policy, please contact us:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: +1-800-555-1234</p>
</div>
</div>
</body>
</html>