HTMLify
policy.html
Views: 16 | Author: karbonsites
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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Privacy Policy & Crisis Information - The Cloud</title> <link rel="stylesheet" href="style.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet"> </head> <body> <header class="main-header"> <nav class="navbar"> <div class="logo">The Cloud</div> <ul class="nav-links"> <li><a href="index.html" class="nav-link">Home</a></li> <li><a href="services.html" class="nav-link">Services</a></li> <li><a href="resources.html" class="nav-link">Library</a></li> <li><a href="about.html" class="nav-link">About Us</a></li> <li><a href="policy.html" class="nav-link active">Privacy</a></li> <li><a href="global.html" class="nav-link">Global</a></li> <li><a href="#contact" class="nav-link cta-link">Get Support</a></li> </ul> </nav> </header> <main class="container"> <section class="page-header"> <h1 class="fade-in-up">Confidentiality & Ethics Standards</h1> <p class="fade-in-up delay-1">Your trust is paramount. See how we protect your journey and where to find emergency help.</p> </section> <section class="privacy-section"> <h2 class="section-title fade-in">Privacy Policy & Data Protection</h2> <div class="grid-2-col-reverse" style="gap: 40px; padding-bottom: 40px;"> <div class="about-text fade-in-element"> <h3>Data Handling & Security</h3> <p>The Cloud uses state-of-the-art encryption to secure any non-personal interaction data (e.g., resource downloads). We do not store personal health information (PHI) on this public platform. User accounts (for coaching/therapy sign-up) are securely isolated and anonymized wherever possible.</p> <h3>Consent and Communication</h3> <p>We only use non-identifying usage statistics to improve site performance. Any direct communication regarding services requires explicit, opt-in consent. We assure secure, end-to-end encrypted pathways for scheduled paid services.</p> </div> <div class="about-image-placeholder fade-in-element" style="background: linear-gradient(135deg, var(--color-surface) 0%, #3a3a55 100%); border: 1px solid var(--color-primary);"> <div class="icon" style="font-size: 3rem; color: var(--color-primary);">🔒</div> </div> </div> <h2 class="section-title fade-in" id="crisis">Emergency & Crisis Information</h2> <div class="bento-grid-resources"> <div class="bento-item wide-item resource-card-special" style="border: 2px solid #dc3545; background: rgba(220, 53, 69, 0.1);"> <h3>CRITICAL DISCLAIMER</h3> <p style="color: #dc3545; font-weight: 600;">THE CLOUD IS NOT AN EMERGENCY MEDICAL SERVICE. If you are having thoughts of self-harm or suicide, please contact emergency services immediately.</p> <a href="#" class="btn btn-small btn-warning" style="background-color: #dc3545; color: white;">Call Local Emergency Services</a> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 6; border-left: 5px solid var(--color-secondary);"> <h3>US / Canada Hotline</h3> <p>Call or Text 988 (Suicide & Crisis Lifeline)</p> <span class="read-more">National Resources →</span> </div> <div class="bento-item resource-card fade-in-element" style="grid-column: span 6; border-left: 5px solid #ffc107;"> <h3>International Crisis Contacts</h3> <p>Find country-specific hotlines, including resources for the UK, Europe, and Asia.</p> <span class="read-more">View Global List →</span> </div> </div> </section> </main> <footer id="contact" class="main-footer"> <div class="container footer-grid"> <div class="footer-col"> <h4>The Cloud</h4> <p>Dedicated to making mental wellness accessible to everyone.</p> </div> <div class="footer-col"> <h4>Quick Links</h4> <ul> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="resources.html">Library</a></li> <li><a href="about.html">About Us</a></li> <li><a href="policy.html">Privacy</a></li> <li><a href="global.html">Global</a></li> </ul> </div> <div class="footer-col"> <h4>Emergency</h4> <p>If you are in crisis, please call or text 988 (USA/Canada).</p> </div> </div> <div class="copyright"> © 2026 The Cloud. All rights reserved. </div> </footer> <script src="script.js"></script> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body> </html> |