34667-vm/privacy.php
2025-10-05 17:44:42 +00:00

52 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Chirivia</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-green: #2E8B57;
--secondary-blue: #4682B4;
--accent-color: #5F9EA0;
--background-light: #F0F8FF;
--surface-white: #FFFFFF;
--text-dark: #2F4F4F;
--font-headings: 'Inter', sans-serif;
--font-body: 'Inter', sans-serif;
--spacing-base: 8px;
--border-radius: 0.5rem;
}
body {
font-family: var(--font-body);
background-color: var(--background-light);
color: var(--text-dark);
margin: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: calc(var(--spacing-base) * 4);
}
h1 {
color: var(--primary-green);
}
a {
color: var(--primary-green);
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>This is a placeholder for the Privacy Policy.</p>
<p>Information about how user data is collected, used, and protected will be detailed here.</p>
<a href="index.php">Back to Home</a>
</div>
</body>
</html>