1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8"/>
5<meta name="viewport" content="width=device-width,initial-scale=1"/>
6<title>Cancellation & Refund Policy — The Service 4 U</title>
7<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet"/>
8<style>
9:root {
10 --bg: #0a0a0f;
11 --surface: #111118;
12 --border: #1e1e2e;
13 --accent: #c9a84c;
14 --accent-dim: rgba(201,168,76,0.12);
15 --danger: #e05252;
16 --danger-dim: rgba(224,82,82,0.1);
17 --text: #e8e8f0;
18 --muted: #6b6b80;
19 --white: #ffffff;
20}
21
22*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
23
24body {
25 background: var(--bg);
26 color: var(--text);
27 font-family: 'DM Sans', sans-serif;
28 font-weight: 400;
29 line-height: 1.7;
30 min-height: 100vh;
31}
32
33/* Background texture */
34body::before {
35 content: '';
36 position: fixed;
37 inset: 0;
38 background:
39 radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,0.08) 0%, transparent 60%),
40 radial-gradient(ellipse 40% 30% at 90% 80%, rgba(224,82,82,0.05) 0%, transparent 50%);
41 pointer-events: none;
42 z-index: 0;
43}
44
45.container {
46 max-width: 860px;
47 margin: 0 auto;
48 padding: 60px 24px 100px;
49 position: relative;
50 z-index: 1;
51}
52
53/* Header */
54.header {
55 text-align: center;
56 margin-bottom: 64px;
57 padding-bottom: 48px;
58 border-bottom: 1px solid var(--border);
59 position: relative;
60}
61
62.header::after {
63 content: '';
64 position: absolute;
65 bottom: -1px;
66 left: 50%;
67 transform: translateX(-50%);
68 width: 80px;
69 height: 2px;
70 background: var(--accent);
71}
72
73.brand {
74 font-family: 'DM Sans', sans-serif;
75 font-size: 13px;
76 font-weight: 600;
77 letter-spacing: 3px;
78 text-transform: uppercase;
79 color: var(--accent);
80 margin-bottom: 20px;
81}
82
83.header h1 {
84 font-family: 'Playfair Display', serif;
85 font-size: clamp(32px, 6vw, 52px);
86 font-weight: 900;
87 color: var(--white);
88 line-height: 1.15;
89 margin-bottom: 16px;
90}
91
92.header h1 span {
93 color: var(--accent);
94}
95
96.header .meta {
97 font-size: 13px;
98 color: var(--muted);
99 letter-spacing: 0.5px;
100}
101
102/* Alert banner */
103.alert-banner {
104 background: var(--danger-dim);
105 border: 1px solid var(--danger);
106 border-left: 4px solid var(--danger);
107 border-radius: 8px;
108 padding: 20px 24px;
109 margin-bottom: 48px;
110 display: flex;
111 align-items: flex-start;
112 gap: 16px;
113}
114
115.alert-banner .icon {
116 font-size: 22px;
117 flex-shrink: 0;
118 margin-top: 2px;
119}
120
121.alert-banner strong {
122 display: block;
123 font-size: 15px;
124 font-weight: 600;
125 color: var(--danger);
126 margin-bottom: 4px;
127}
128
129.alert-banner p {
130 font-size: 14px;
131 color: #c88;
132 margin: 0;
133}
134
135/* Sections */
136.section {
137 margin-bottom: 48px;
138 background: var(--surface);
139 border: 1px solid var(--border);
140 border-radius: 12px;
141 overflow: hidden;
142 opacity: 0;
143 transform: translateY(20px);
144 animation: fadeUp 0.5s ease forwards;
145}
146
147.section:nth-child(1) { animation-delay: 0.1s; }
148.section:nth-child(2) { animation-delay: 0.2s; }
149.section:nth-child(3) { animation-delay: 0.3s; }
150.section:nth-child(4) { animation-delay: 0.4s; }
151.section:nth-child(5) { animation-delay: 0.5s; }
152.section:nth-child(6) { animation-delay: 0.6s; }
153.section:nth-child(7) { animation-delay: 0.7s; }
154
155@keyframes fadeUp {
156 to { opacity: 1; transform: translateY(0); }
157}
158
159.section-header {
160 padding: 20px 28px;
161 background: rgba(255,255,255,0.02);
162 border-bottom: 1px solid var(--border);
163 display: flex;
164 align-items: center;
165 gap: 14px;
166}
167
168.section-number {
169 width: 28px;
170 height: 28px;
171 background: var(--accent-dim);
172 border: 1px solid var(--accent);
173 border-radius: 6px;
174 display: flex;
175 align-items: center;
176 justify-content: center;
177 font-size: 12px;
178 font-weight: 700;
179 color: var(--accent);
180 flex-shrink: 0;
181}
182
183.section-header h2 {
184 font-family: 'Playfair Display', serif;
185 font-size: 18px;
186 font-weight: 700;
187 color: var(--white);
188}
189
190.section-body {
191 padding: 24px 28px;
192}
193
194.section-body p {
195 font-size: 15px;
196 color: #b0b0c8;
197 margin-bottom: 16px;
198}
199
200.section-body p:last-child { margin-bottom: 0; }
201
202.section-body strong {
203 color: var(--white);
204 font-weight: 600;
205}
206
207/* Policy list */
208.policy-list {
209 list-style: none;
210 margin: 16px 0;
211}
212
213.policy-list li {
214 display: flex;
215 align-items: flex-start;
216 gap: 12px;
217 padding: 10px 0;
218 border-bottom: 1px solid rgba(255,255,255,0.04);
219 font-size: 15px;
220 color: #b0b0c8;
221}
222
223.policy-list li:last-child { border-bottom: none; }
224
225.policy-list li::before {
226 content: '—';
227 color: var(--accent);
228 font-weight: 700;
229 flex-shrink: 0;
230 margin-top: 1px;
231}
232
233/* Highlight box */
234.highlight-box {
235 background: var(--accent-dim);
236 border: 1px solid rgba(201,168,76,0.3);
237 border-radius: 8px;
238 padding: 16px 20px;
239 margin: 16px 0;
240}
241
242.highlight-box p {
243 color: #d4b96a !important;
244 font-size: 14px !important;
245 margin: 0 !important;
246}
247
248/* No refund stamp */
249.no-refund-stamp {
250 text-align: center;
251 padding: 32px 28px;
252 border-top: 1px solid var(--border);
253 background: rgba(224,82,82,0.04);
254}
255
256.stamp {
257 display: inline-block;
258 border: 3px solid var(--danger);
259 border-radius: 8px;
260 padding: 12px 32px;
261 font-family: 'Playfair Display', serif;
262 font-size: 22px;
263 font-weight: 900;
264 color: var(--danger);
265 letter-spacing: 4px;
266 text-transform: uppercase;
267 opacity: 0.85;
268 transform: rotate(-1.5deg);
269 box-shadow: 0 0 20px rgba(224,82,82,0.15);
270}
271
272/* Chargeback warning */
273.chargeback-warning {
274 background: linear-gradient(135deg, rgba(224,82,82,0.08), rgba(224,82,82,0.03));
275 border: 1px solid rgba(224,82,82,0.3);
276 border-radius: 8px;
277 padding: 20px 24px;
278 margin: 16px 0;
279}
280
281.chargeback-warning h4 {
282 font-size: 14px;
283 font-weight: 700;
284 color: var(--danger);
285 text-transform: uppercase;
286 letter-spacing: 1px;
287 margin-bottom: 10px;
288}
289
290.chargeback-warning p {
291 font-size: 14px;
292 color: #c88 !important;
293 margin: 0 !important;
294}
295
296/* Footer */
297.footer {
298 text-align: center;
299 margin-top: 64px;
300 padding-top: 32px;
301 border-top: 1px solid var(--border);
302}
303
304.footer p {
305 font-size: 13px;
306 color: var(--muted);
307 line-height: 1.8;
308}
309
310.footer a {
311 color: var(--accent);
312 text-decoration: none;
313}
314
315.footer a:hover { text-decoration: underline; }
316
317/* Responsive */
318@media (max-width: 600px) {
319 .container { padding: 40px 16px 60px; }
320 .section-body { padding: 20px 20px; }
321 .section-header { padding: 16px 20px; }
322}
323</style>
324</head>
325<body>
326
327<div class="container">
328
329 <!-- Header -->
330 <div class="header">
331
332 <h1>Cancellation & <span>Refund Policy</span></h1>
333 <p class="meta">Effective immediately · All subscribers are bound by this policy upon purchase</p>
334 </div>
335
336 <!-- Alert -->
337 <div class="alert-banner">
338 <div class="icon">⚠️</div>
339 <div>
340 <strong>No Refunds — All Sales Are Final</strong>
341 <p>By completing your purchase, you acknowledge and agree that all payments are non-refundable under any circumstances. Please read this policy carefully before subscribing.</p>
342 </div>
343 </div>
344
345 <!-- Section 1 -->
346 <div class="section">
347 <div class="section-header">
348 <div class="section-number">1</div>
349 <h2>Nature of Service & Immediate Delivery</h2>
350 </div>
351 <div class="section-body">
352 <p>We provide a <strong>digital service</strong> that is delivered electronically and activated immediately upon payment confirmation. Because the service is digital in nature and access is granted instantly, it is not subject to standard return or cancellation rights that apply to physical goods.</p>
353 <p>By completing your purchase you expressly acknowledge that:</p>
354 <ul class="policy-list">
355 <li>You have requested immediate access to the service and that access has been granted</li>
356 <li>The service is fully delivered at the moment of activation</li>
357 <li>You waive any right of withdrawal or cancellation that may otherwise apply under consumer protection laws governing digital content delivered immediately</li>
358 <li>You have read, understood, and agreed to this policy prior to purchase</li>
359 </ul>
360 </div>
361 <div class="no-refund-stamp">
362 <div class="stamp">No Refunds</div>
363 </div>
364 </div>
365
366 <!-- Section 2 -->
367 <div class="section">
368 <div class="section-header">
369 <div class="section-number">2</div>
370 <h2>Absolute No-Refund Policy</h2>
371 </div>
372 <div class="section-body">
373 <p><strong>All payments made to us are final and non-refundable.</strong> We do not issue refunds, credits, or partial refunds under any of the following circumstances:</p>
374 <ul class="policy-list">
375 <li>You change your mind or no longer wish to use the service</li>
376 <li>You claim you did not use the service during the subscription period</li>
377 <li>You experience technical difficulties on your own end</li>
378 <li>You purchased the wrong plan or subscription tier</li>
379 <li>You forgot to cancel before a renewal date</li>
380 <li>You were unaware of this policy at the time of purchase</li>
381 <li>Service interruptions or outages that are temporary in nature</li>
382 <li>Incompatibility with your specific setup or configuration</li>
383 <li>Account suspension or termination resulting from violations of our Terms of Service</li>
384 <li>Duplicate purchases made in error</li>
385 </ul>
386 <div class="highlight-box">
387 <p>⚠️ <strong>No exceptions will be made.</strong> Our support team is not authorized to issue refunds regardless of the circumstances presented.</p>
388 </div>
389 </div>
390 </div>
391
392 <!-- Section 3 -->
393 <div class="section">
394 <div class="section-header">
395 <div class="section-number">3</div>
396 <h2>Subscription Renewals & Cancellations</h2>
397 </div>
398 <div class="section-body">
399 <p>Subscriptions are offered on a recurring basis. It is the sole responsibility of the subscriber to manage their subscription settings and cancel prior to renewal if they do not wish to continue.</p>
400 <ul class="policy-list">
401 <li>You may cancel your subscription at any time through your client portal</li>
402 <li>Cancellation stops future billing but <strong>does not entitle you to a refund</strong> for the current or any prior billing period</li>
403 <li>Your service will remain active until the end of the current paid period</li>
404 <li>Renewal charges that have already been processed are non-refundable</li>
405 <li>It is your responsibility to cancel before the renewal date if you do not wish to be charged</li>
406 </ul>
407 <p>We recommend cancelling at least <strong>24 hours before your renewal date</strong> to ensure the cancellation is processed in time.</p>
408 </div>
409 </div>
410
411 <!-- Section 4 -->
412 <div class="section">
413 <div class="section-header">
414 <div class="section-number">4</div>
415 <h2>Chargebacks & Payment Disputes</h2>
416 </div>
417 <div class="section-body">
418 <p>Filing a chargeback or payment dispute with your bank or payment provider is a serious matter. By purchasing from us, you agree to contact us directly to resolve any billing concerns before initiating a dispute with your financial institution.</p>
419 <div class="chargeback-warning">
420 <h4>⚠️ Consequences of Unauthorized Chargebacks</h4>
421 <p>Any chargeback filed without first contacting our support team will be considered fraudulent misuse of the dispute process. We maintain comprehensive records of all transactions, service delivery confirmations, account access records, and communications. This evidence will be submitted in full to contest any dispute.</p>
422 </div>
423 <p>Consequences of filing an unauthorized chargeback include:</p>
424 <ul class="policy-list">
425 <li><strong>Immediate and permanent termination</strong> of your account and all associated services</li>
426 <li>Submission of all transaction evidence, delivery logs, and access records to your payment provider</li>
427 <li>Permanent ban from all of our services</li>
428 <li>Reporting to fraud prevention databases where applicable</li>
429 <li>Potential pursuit of recovery of fees, chargeback penalties, and administrative costs</li>
430 </ul>
431 <div class="highlight-box">
432 <p>📋 We win the overwhelming majority of chargeback disputes because we maintain thorough documentation of service delivery. Filing a chargeback is unlikely to result in a successful outcome and will permanently affect your ability to use our service.</p>
433 </div>
434 </div>
435 </div>
436
437 <!-- Section 5 -->
438 <div class="section">
439 <div class="section-header">
440 <div class="section-number">5</div>
441 <h2>Technical Support & Service Issues</h2>
442 </div>
443 <div class="section-body">
444 <p>If you experience any issues with the service, our support team is available to assist you. <strong>Technical issues are not grounds for a refund</strong> but we are committed to resolving them promptly.</p>
445 <ul class="policy-list">
446 <li>Open a support ticket through your client portal for any technical assistance</li>
447 <li>Include as much detail as possible when submitting a ticket</li>
448 <li>Most issues are resolved quickly once our support team is contacted</li>
449 <li>Temporary service interruptions do not constitute grounds for refund or credit</li>
450 </ul>
451 <p>We encourage all customers to reach out to support <strong>before</strong> making any assumptions about service quality. Our team can typically resolve issues that appear to be service-related.</p>
452 </div>
453 </div>
454
455 <!-- Section 7 -->
456 <div class="section">
457 <div class="section-header">
458 <div class="section-number">6</div>
459 <h2>Agreement & Acceptance</h2>
460 </div>
461 <div class="section-body">
462 <p>By completing any purchase on our platform, you confirm that you have read this policy in its entirety and agree to be bound by all terms stated herein. This policy is incorporated into and forms part of our Terms of Service.</p>
463 <p>If you do not agree with this policy, <strong>do not complete your purchase.</strong> Once payment is submitted, this policy is in full effect and cannot be waived.</p>
464 <div class="highlight-box">
465 <p>📌 This policy applies to all purchases, renewals, plan upgrades, and any other payments made to us.</p>
466 </div>
467 </div>
468 </div>
469
470 <!-- Footer -->
471 <div class="footer">
472 <p>Questions about this policy? Contact us through your support portal before making a purchase.<br/>
473 This policy is subject to change without notice</p>
474 </div>
475
476</div>
477
478</body>
479</html>
480