privacy.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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.0">
  6. <title>Privacy Policy - Art Color</title>
  7. <style>
  8. :root {
  9. --primary-color: #ff6b6b;
  10. --secondary-color: #4ecdc4;
  11. --accent-color: #ffd166;
  12. --background-color: #f9f9f9;
  13. --text-color: #333;
  14. --light-text: #666;
  15. }
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: border-box;
  20. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  21. }
  22. body {
  23. background-color: var(--background-color);
  24. color: var(--text-color);
  25. line-height: 1.6;
  26. }
  27. .container {
  28. max-width: 1200px;
  29. margin: 0 auto;
  30. padding: 0 20px;
  31. }
  32. header {
  33. background-color: var(--primary-color);
  34. color: white;
  35. padding: 30px 0;
  36. text-align: center;
  37. position: relative;
  38. }
  39. .header-logo {
  40. font-size: 1.8rem;
  41. font-weight: 700;
  42. letter-spacing: 1px;
  43. }
  44. .breadcrumb {
  45. margin: 20px 0;
  46. font-size: 0.9rem;
  47. color: var(--light-text);
  48. }
  49. .breadcrumb a {
  50. color: var(--primary-color);
  51. text-decoration: none;
  52. }
  53. .breadcrumb a:hover {
  54. text-decoration: underline;
  55. }
  56. .page-title {
  57. color: var(--secondary-color);
  58. font-size: 2.2rem;
  59. margin: 40px 0 20px;
  60. text-align: center;
  61. }
  62. .privacy-content {
  63. background-color: white;
  64. border-radius: 10px;
  65. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  66. padding: 40px;
  67. margin-bottom: 60px;
  68. }
  69. .privacy-section {
  70. margin-bottom: 40px;
  71. }
  72. .privacy-section h2 {
  73. color: var(--primary-color);
  74. font-size: 1.5rem;
  75. margin-bottom: 15px;
  76. }
  77. .privacy-section h3 {
  78. color: var(--secondary-color);
  79. font-size: 1.2rem;
  80. margin-bottom: 10px;
  81. margin-top: 25px;
  82. }
  83. .privacy-section p {
  84. color: var(--text-color);
  85. margin-bottom: 15px;
  86. }
  87. .privacy-section ul {
  88. margin-left: 25px;
  89. margin-bottom: 15px;
  90. }
  91. .privacy-section li {
  92. margin-bottom: 8px;
  93. }
  94. .last-updated {
  95. color: var(--light-text);
  96. font-style: italic;
  97. text-align: right;
  98. margin-top: 30px;
  99. }
  100. footer {
  101. background-color: var(--text-color);
  102. color: white;
  103. text-align: center;
  104. padding: 30px 0;
  105. margin-top: 50px;
  106. }
  107. .footer-content {
  108. max-width: 600px;
  109. margin: 0 auto;
  110. }
  111. @media (max-width: 768px) {
  112. .page-title {
  113. font-size: 1.8rem;
  114. }
  115. .privacy-content {
  116. padding: 30px 20px;
  117. }
  118. .privacy-section h2 {
  119. font-size: 1.3rem;
  120. }
  121. .privacy-section h3 {
  122. font-size: 1.1rem;
  123. }
  124. }
  125. </style>
  126. </head>
  127. <body>
  128. <header>
  129. <div class="container">
  130. <div class="header-logo">Art Color</div>
  131. <p>Free Printable Coloring Pages and Birthday Cards</p>
  132. </div>
  133. </header>
  134. <div class="container">
  135. <div class="breadcrumb">
  136. <a href="/">Home</a> &gt; Privacy Policy
  137. </div>
  138. <h1 class="page-title">Privacy Policy</h1>
  139. <div class="privacy-content">
  140. <div class="privacy-section">
  141. <h2>1. Introduction</h2>
  142. <p>Welcome to Art Color ("we," "us," or "our"). We are committed to protecting your privacy and ensuring
  143. the security of your personal information. This Privacy Policy explains how we collect, use,
  144. disclose, and safeguard your information when you visit our website <a
  145. href="https://artnumbercoloring.com"
  146. style="color: var(--primary-color);">artnumbercoloring.com</a> (the "Website") or use our
  147. services.</p>
  148. <p>By using our Website, you agree to the terms of this Privacy Policy. If you do not agree with our
  149. practices, please do not use our Website or services.</p>
  150. <p>This Privacy Policy is designed to comply with the General Data Protection Regulation (GDPR) of the
  151. European Union and the California Consumer Privacy Act (CCPA). If you are located in the European
  152. Union or California, please review the additional information provided in Sections 11 and 12
  153. respectively.</p>
  154. </div>
  155. <div class="privacy-section">
  156. <h2>2. Information We Collect</h2>
  157. <h3>2.1 Personal Information</h3>
  158. <p>We may collect personal information that you voluntarily provide to us when you:</p>
  159. <ul>
  160. <li>Create an account on our Website</li>
  161. <li>Subscribe to our newsletter or email updates</li>
  162. <li>Contact us through our support channels</li>
  163. <li>Participate in contests, surveys, or promotions</li>
  164. </ul>
  165. <p>Examples of personal information we may collect include your name, email address, postal address,
  166. phone number, and any other information you choose to provide.</p>
  167. <h3>2.2 Non-Personal Information</h3>
  168. <p>We may automatically collect non-personal information about your visit to our Website, including:</p>
  169. <ul>
  170. <li>Your IP address</li>
  171. <li>Browser type and version</li>
  172. <li>Operating system</li>
  173. <li>Pages visited and actions taken on our Website</li>
  174. <li>Time and duration of your visit</li>
  175. <li>Referral source</li>
  176. </ul>
  177. <p>We use this information to analyze trends, administer the site, track user movements, and gather
  178. demographic information for aggregate use.</p>
  179. <h3>2.3 Cookies and Tracking Technologies</h3>
  180. <p>Our Website uses cookies and similar tracking technologies to enhance your experience. Cookies are
  181. small text files that are stored on your device. We use both session cookies (which expire when you
  182. close your browser) and persistent cookies (which remain on your device until deleted).</p>
  183. <p>We use cookies for various purposes, including:</p>
  184. <ul>
  185. <li>Remembering your preferences and settings</li>
  186. <li>Analyzing website traffic and performance</li>
  187. <li>Personalizing your experience</li>
  188. <li>Advertising and marketing purposes</li>
  189. </ul>
  190. <p>You can control cookies through your browser settings. However, if you choose to disable cookies,
  191. some features of our Website may not function properly.</p>
  192. <h3>2.4 Google Analytics and Google AdSense</h3>
  193. <p>We use Google Analytics, a web analytics service provided by Google, Inc. ("Google"), to help analyze
  194. how users interact with our Website. Google Analytics uses cookies to collect information such as
  195. how visitors navigate our Website. This information is used to compile reports and help us improve
  196. our Website. The information collected by Google Analytics is generally anonymous and aggregated.
  197. </p>
  198. <p>We also use Google AdSense, an advertising service provided by Google, to display advertisements on
  199. our Website. Google AdSense uses cookies to serve ads based on your prior visits to our Website and
  200. other websites. These cookies do not contain personal information, but they may track your online
  201. activity across different websites.</p>
  202. <p>Google's ability to use and share information collected by Google Analytics and Google AdSense is
  203. subject to Google's <a href="https://policies.google.com/privacy"
  204. style="color: var(--primary-color);">Privacy Policy</a>. You may opt out of Google Analytics by
  205. downloading and installing the <a href="https://tools.google.com/dlpage/gaoptout"
  206. style="color: var(--primary-color);">Google Analytics Opt-out Browser Add-on</a>.</p>
  207. </div>
  208. <div class="privacy-section">
  209. <h2>3. How We Use Your Information</h2>
  210. <p>We use the information we collect for various purposes, including:</p>
  211. <ul>
  212. <li>Providing, maintaining, and improving our Website and services</li>
  213. <li>Understanding user preferences and providing personalized content</li>
  214. <li>Responding to your inquiries and providing customer support</li>
  215. <li>Sending you updates, newsletters, and promotional materials (if you have subscribed to receive
  216. them)</li>
  217. <li>Conducting research and analysis to improve our offerings</li>
  218. <li>Detecting, preventing, and addressing technical issues</li>
  219. </ul>
  220. </div>
  221. <div class="privacy-section">
  222. <h2>4. Information Sharing and Disclosure</h2>
  223. <p>We do not sell, trade, or otherwise transfer your personal information to third parties without your
  224. consent, except as described in this Privacy Policy.</p>
  225. <h3>4.1 Service Providers</h3>
  226. <p>We may engage third-party service providers to assist us in operating our Website, conducting our
  227. business, or providing services to you. These third parties have access to your personal information
  228. only to perform these tasks on our behalf and are obligated not to disclose or use it for any other
  229. purpose.</p>
  230. <h3>4.2 Legal Requirements</h3>
  231. <p>We may disclose your personal information if required to do so by law or in response to valid
  232. requests by public authorities (e.g., a court or government agency).</p>
  233. <h3>4.3 Business Transfers</h3>
  234. <p>If we are involved in a merger, acquisition, or sale of all or a portion of our assets, your personal
  235. information may be transferred as part of that transaction.</p>
  236. <h3>4.4 Consent</h3>
  237. <p>We may disclose your personal information with your consent, such as when you choose to share your
  238. information for a specific purpose.</p>
  239. </div>
  240. <div class="privacy-section">
  241. <h2>5. Data Security</h2>
  242. <p>We take reasonable measures to protect your personal information from unauthorized access, use, or
  243. disclosure. However, no method of transmission over the internet or electronic storage is 100%
  244. secure, and we cannot guarantee absolute security.</p>
  245. <p>You are responsible for maintaining the confidentiality of your account credentials, and you should
  246. notify us immediately of any unauthorized use of your account.</p>
  247. </div>
  248. <div class="privacy-section">
  249. <h2>6. Your Choices</h2>
  250. <h3>6.1 Communication Preferences</h3>
  251. <p>You can unsubscribe from our marketing emails at any time by clicking the "Unsubscribe" link at the
  252. bottom of the email. You may also update your communication preferences by logging into your account
  253. and adjusting your settings.</p>
  254. <h3>6.2 Access, Correction, or Deletion</h3>
  255. <p>You have the right to access, correct, or delete the personal information we hold about you. To
  256. request access to or correction of your personal information, or to request that we delete your
  257. personal information, please contact us at <a href="mailto:privacy@artnumbercoloring.com"
  258. style="color: var(--primary-color);">privacy@artnumbercoloring.com</a>.</p>
  259. <h3>6.3 Opting Out of Cookies</h3>
  260. <p>You can disable cookies through your browser settings. However, disabling cookies may affect your
  261. experience on our Website.</p>
  262. <h3>6.4 Do Not Track Signals</h3>
  263. <p>Our Website does not currently respond to "Do Not Track" signals from browsers. For more information
  264. about "Do Not Track," please visit <a href="https://www.allaboutdnt.org/"
  265. style="color: var(--primary-color);">https://www.allaboutdnt.org/</a>.</p>
  266. </div>
  267. <div class="privacy-section">
  268. <h2>7. Children's Privacy</h2>
  269. <p>Our Website is not intended for children under the age of 13. We do not knowingly collect personal
  270. information from children under 13. If you believe we have inadvertently collected information from
  271. a child under 13, please contact us, and we will promptly delete the information.</p>
  272. </div>
  273. <div class="privacy-section">
  274. <h2>8. Third-Party Links</h2>
  275. <p>Our Website may contain links to third-party websites or services that are not owned or controlled by
  276. us. This Privacy Policy does not apply to those third-party websites or services. We encourage you
  277. to review the privacy policies of those third parties before using their services.</p>
  278. </div>
  279. <div class="privacy-section">
  280. <h2>9. Changes to This Privacy Policy</h2>
  281. <p>We may update this Privacy Policy from time to time. The date at the top of this page indicates when
  282. this Privacy Policy was last revised. We will notify you of any material changes by posting the new
  283. Privacy Policy on our Website. Your continued use of our Website after the effective date of the
  284. revised Privacy Policy constitutes your acceptance of the changes.</p>
  285. </div>
  286. <div class="privacy-section">
  287. <h2>10. Contact Us</h2>
  288. <p>If you have any questions, concerns, or suggestions about our Privacy Policy, please contact us at:
  289. </p>
  290. <p>Email: <a href="mailto:privacy@artnumbercoloring.com"
  291. style="color: var(--primary-color);">privacy@artnumbercoloring.com</a></p>
  292. <p>Mail: 17th Floor, Shining Building, No. 35 Xueyuan Road, Haidian District, Beijing, China</p>
  293. </div>
  294. <div class="privacy-section">
  295. <h2>11. GDPR-Specific Information</h2>
  296. <p>If you are located in the European Union, the following additional information applies to you:</p>
  297. <h3>11.1 Legal Basis for Processing</h3>
  298. <p>We process your personal information on the following legal bases:</p>
  299. <ul>
  300. <li><strong>Consent:</strong> We may process your personal information when you have given us your
  301. explicit consent for specific purposes, such as subscribing to our newsletter.</li>
  302. <li><strong>Contract:</strong> We may process your personal information to fulfill our obligations
  303. under a contract with you, such as providing the services you have requested.</li>
  304. <li><strong>Legal Obligation:</strong> We may process your personal information to comply with
  305. applicable laws and regulations.</li>
  306. <li><strong>Legitimate Interests:</strong> We may process your personal information for our
  307. legitimate interests, such as improving our Website and services, ensuring security, and
  308. analyzing user behavior. Our legitimate interests do not override your rights and freedoms.</li>
  309. </ul>
  310. <h3>11.2 Your GDPR Rights</h3>
  311. <p>In addition to the rights described in Section 6, you have the following rights under the GDPR:</p>
  312. <ul>
  313. <li><strong>Right to Object:</strong> You have the right to object to our processing of your
  314. personal information based on our legitimate interests.</li>
  315. <li><strong>Right to Restrict Processing:</strong> You have the right to request that we restrict
  316. the processing of your personal information in certain circumstances.</li>
  317. <li><strong>Right to Data Portability:</strong> You have the right to receive your personal
  318. information in a structured, commonly used, and machine-readable format and to transmit that
  319. information to another controller.</li>
  320. <li><strong>Right to Withdraw Consent:</strong> If we are processing your personal information based
  321. on your consent, you have the right to withdraw your consent at any time.</li>
  322. </ul>
  323. <p>To exercise any of these rights, please contact us at <a href="mailto:privacy@artnumbercoloring.com"
  324. style="color: var(--primary-color);">privacy@artnumbercoloring.com</a>.</p>
  325. <h3>11.3 Data Transfers</h3>
  326. <p>Our servers are located in [Country], and your personal information may be transferred to and
  327. processed in that country. If you are located in the European Union, please note that [Country] may
  328. not have been deemed by the European Commission to have an adequate level of data protection.
  329. However, we implement appropriate safeguards, such as Standard Contractual Clauses, to ensure that
  330. your personal information receives an adequate level of protection when transferred outside the
  331. European Union.</p>
  332. </div>
  333. <div class="privacy-section">
  334. <h2>12. CCPA-Specific Information</h2>
  335. <p>If you are a California resident, the following additional information applies to you:</p>
  336. <h3>12.1 CCPA Rights</h3>
  337. <p>Under the CCPA, you have the following rights:</p>
  338. <ul>
  339. <li><strong>Right to Know:</strong> You have the right to request that we disclose the categories
  340. and specific pieces of personal information we have collected about you, the sources of that
  341. information, the business or commercial purpose for collecting or selling that information, and
  342. the categories of third parties with whom we have shared that information.</li>
  343. <li><strong>Right to Delete:</strong> You have the right to request that we delete your personal
  344. information, subject to certain exceptions.</li>
  345. <li><strong>Right to Opt-Out of Sale:</strong> You have the right to opt out of the "sale" of your
  346. personal information, as defined by the CCPA. We do not currently sell your personal
  347. information, but if we do so in the future, we will provide you with a mechanism to opt out.
  348. </li>
  349. <li><strong>Non-Discrimination:</strong> We will not discriminate against you for exercising your
  350. rights under the CCPA.</li>
  351. </ul>
  352. <h3>12.2 How to Exercise Your CCPA Rights</h3>
  353. <p>To exercise your rights under the CCPA, please contact us at <a
  354. href="mailto:privacy@artnumbercoloring.com"
  355. style="color: var(--primary-color);">privacy@artnumbercoloring.com</a> or by mail at the address
  356. provided in Section 10. We will respond to your request within 45 days.</p>
  357. <h3>12.3 Information We Collect and Disclose</h3>
  358. <p>For more information about the categories of personal information we collect and disclose, please see
  359. Sections 2 and 4 of this Privacy Policy.</p>
  360. <h3>12.4 "Shine the Light" Law</h3>
  361. <p>California Civil Code Section 1798.83 permits California residents to request certain information
  362. regarding our disclosure of personal information to third parties for their direct marketing
  363. purposes. To make such a request, please contact us at <a
  364. href="mailto:privacy@artnumbercoloring.com"
  365. style="color: var(--primary-color);">privacy@artnumbercoloring.com</a>.</p>
  366. </div>
  367. <div class="last-updated">
  368. <p>Last updated: July 4, 2025</p>
  369. </div>
  370. </div>
  371. </div>
  372. <footer>
  373. <div class="container footer-content">
  374. <p>Art Color - Free Printable Coloring Pages and Birthday Cards</p>
  375. <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
  376. </div>
  377. </footer>
  378. </body>
  379. </html>