-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
115 lines (103 loc) · 4.89 KB
/
Copy pathprivacy.html
File metadata and controls
115 lines (103 loc) · 4.89 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
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Paw Paw Pet Care</title>
<link rel="stylesheet" href="styles.css">
<style>
.privacy-container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px 80px;
line-height: 1.7;
}
.privacy-container h1 {
color: #2c5530;
margin-bottom: 10px;
}
.privacy-container .last-updated {
color: #666;
font-size: 0.9rem;
margin-bottom: 30px;
}
.privacy-container h2 {
color: #2c5530;
margin-top: 30px;
font-size: 1.3rem;
}
.privacy-container p, .privacy-container li {
color: #444;
margin: 12px 0;
}
.privacy-container ul {
padding-left: 25px;
}
.back-link {
display: inline-block;
margin-bottom: 20px;
color: #4CAF50;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="privacy-container">
<a href="index.html" class="back-link">← Back to Home</a>
<h1>Privacy Policy</h1>
<p class="last-updated">Last updated: April 22, 2026</p>
<p>Paw Paw Pet Care ("we," "us," or "our") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, and safeguard your information when you use our website and services.</p>
<h2>1. Information We Collect</h2>
<p>We collect information that you voluntarily provide to us, including:</p>
<ul>
<li><strong>Contact Information:</strong> Name, phone number, and email address when you submit our contact form or book services</li>
<li><strong>Pet Information:</strong> Your dog's name, breed, age, medical history, and behavioral information for boarding/daycare</li>
<li><strong>Communication Records:</strong> Messages, emails, and phone call logs related to your booking</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>We use your information solely to:</p>
<ul>
<li>Provide pet boarding and daycare services</li>
<li>Communicate with you about your booking</li>
<li>Contact you or your emergency contact if needed during your dog's stay</li>
<li>Comply with legal requirements (vaccination records)</li>
</ul>
<h2>3. Information Sharing</h2>
<p><strong>We do not sell, rent, or share your personal information with third parties for marketing purposes.</strong></p>
<p>Your information is only shared in these limited circumstances:</p>
<ul>
<li>With veterinary clinics if emergency medical care is needed</li>
<li>When required by law or legal process</li>
</ul>
<h2>4. Data Security</h2>
<p>We implement appropriate security measures to protect your personal information. Your data is stored securely and access is limited to authorized personnel only.</p>
<h2>5. Data Retention</h2>
<p>We retain your information for as long as necessary to provide our services and comply with legal obligations. Vaccination records are kept for 3 years per California regulations.</p>
<h2>6. Your Rights (CCPA)</h2>
<p>California residents have the right to:</p>
<ul>
<li>Know what personal information we collect about you</li>
<li>Request deletion of your personal information</li>
<li>Opt-out of the sale of personal information (we never sell your data)</li>
<li>Non-discrimination for exercising your privacy rights</li>
</ul>
<p>To exercise these rights, contact us at 415-823-0199 or through our contact form.</p>
<h2>7. Cookies and Analytics</h2>
<p>Our website does not use tracking cookies or third-party analytics. We only use essential cookies necessary for website functionality.</p>
<h2>8. Children's Privacy</h2>
<p>Our services are not directed to children under 13. We do not knowingly collect information from children under 13.</p>
<h2>9. Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page with an updated "Last updated" date.</p>
<h2>10. Contact Us</h2>
<p>If you have questions about this Privacy Policy, please contact us:</p>
<ul>
<li><strong>Phone:</strong> 415-823-0199</li>
<li><strong>Business:</strong> Paw Paw Pet Care</li>
<li><strong>Location:</strong> Castro Valley, CA 94546</li>
</ul>
</div>
</body>
</html>