<?php
require_once 'config.php';
$page_title = 'Terms of Service | ' . APP_NAME;
include 'templates/main_template.php'; 
?>
<?php function render_page_content() { ?>
<div class="max-w-4xl mx-auto px-4 py-8 bg-white rounded-xl shadow-lg">
    <h1 class="text-4xl font-bold mb-6 text-gray-900">Terms of Service</h1>
    <p class="text-sm text-gray-500">Last Updated: <?= date('M d, Y') ?></p>
    <h2 class="text-2xl font-semibold mt-6 mb-3 border-b pb-1">1. User Accounts and Verification</h2>
    <p class="text-gray-600 mb-4">
        Each user is entitled to **one verified profile** on the Chikhalikar Portal. Verification requires the submission of identification documents, which are kept secure and accessible only by administrators. Profile submission places the listing into a 'pending' state awaiting manual approval.
    </p>
    <h2 class="text-2xl font-semibold mt-6 mb-3 border-b pb-1">2. Content Guidelines</h2>
    <p class="text-gray-600 mb-4">
        Users must ensure all published content (text, photos, pricing) is accurate, legal, and non-offensive. The Admin Panel reserves the right to reject or suspend profiles that violate these guidelines without prior notice.
    </p>
</div>
<?php } ?>
<?php include 'templates/content_static.php'; ?>