Privacy Policy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Privacy Policy - Map Search App</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 30px;
border-radius: 16px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
h1, h2 {
color: #2b5876;
}
p {
line-height: 1.7;
margin: 15px 0;
}
.button-container {
text-align: center;
margin-top: 30px;
}
.btn-home {
padding: 12px 24px;
border: 2px solid #2b5876;
background: transparent;
border-radius: 50px;
font-size: 16px;
font-weight: bold;
color: #2b5876;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-home:hover {
background: #2b5876;
color: white;
transform: scale(1.05);
}
@media (max-width: 600px) {
.container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>Effective Date: June 11, 2025</p>
<h2>1. Introduction</h2>
<p>This privacy policy explains how our Map Search App collects, uses, and protects your data. We are committed to safeguarding your privacy while providing an accurate and reliable location search service.</p>
<h2>2. Information We Collect</h2>
<p>We may collect your current location only when you allow it. This is used solely to help you find nearby places and improve the accuracy of search results.</p>
<h2>3. How We Use Your Information</h2>
<ul>
<li>To provide location-based services</li>
<li>To improve map search accuracy</li>
<li>To show nearby relevant locations</li>
</ul>
<h2>4. Sharing of Information</h2>
<p>We do not share your location or personal information with any third-party services unless required by law.</p>
<h2>5. Your Choices</h2>
<p>You can disable location access in your browser or device settings. However, this may affect the app’s functionality.</p>
<h2>6. Changes to This Policy</h2>
<p>We may update this privacy policy from time to time. You are advised to review this page periodically for any changes.</p>
<h2>7. Contact Us</h2>
<p>If you have any questions or concerns about our privacy practices, feel free to contact us at <strong>support@mapsearchapp.com</strong>.</p>
<div class="button-container">
<button class="btn-home" onclick="window.location.href='index.html'">← Back to Home</button>
</div>
</div>
</body>
</html>
Comments
Post a Comment