<?php
define('ABEMS_ACCESS', true);
require_once __DIR__ . '/config/config.php';

$page_title       = 'HIPAA Notice of Privacy Practices · A Believers EMS Houston';
$page_description = 'How A Believers EMS LLC protects patient health information under HIPAA. Your rights, our duties, and how to file a complaint.';
$page_breadcrumb  = [['Home', 'index.php'], ['HIPAA Notice', null]];

layout('head', compact('page_title', 'page_description', 'page_breadcrumb'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <div class="container">
            <nav class="breadcrumb" aria-label="Breadcrumb">
                <a href="<?= e(SITE_URL) ?>/">Home</a>
                <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>
                <span>HIPAA Notice</span>
            </nav>
            <h1 class="js-reveal">HIPAA Notice of <em class="display">Privacy Practices</em></h1>
            <p class="js-reveal-fade">Your rights. Our duties. How patient health information is protected.</p>
        </div>
    </header>

    <section class="section">
        <div class="container container-md">
            <p style="color:var(--fg-muted);font-size:var(--fs-sm);">Effective: <?= date('F Y') ?></p>

            <h2>Quick answer</h2>
            <div class="answer-block">
                A Believers EMS LLC complies with the Health Insurance Portability and Accountability Act (HIPAA). Patient health information (PHI) we collect during a transport is used only for treatment, payment and healthcare operations, and disclosed only with patient authorization or where required by law.
            </div>

            <h2>How we use PHI</h2>
            <p>We use protected health information to: (1) coordinate and provide your transport, (2) bill Medicare, Medicaid or your insurer, (3) run our operations safely (training, quality, audits), and (4) meet legal and regulatory requirements (Texas DSHS, OIG, public health reporting where required).</p>

            <h2>Your rights</h2>
            <p>You have the right to: (a) inspect and copy your PHI, (b) request corrections, (c) request an accounting of disclosures, (d) request confidential communications, (e) request restrictions on certain uses, (f) receive a paper copy of this notice, and (g) file a complaint without retaliation.</p>

            <h2>How to file a complaint</h2>
            <p>If you believe your rights have been violated, you may file a complaint with us at <a href="mailto:<?= e(CONTACT_EMAIL) ?>"><?= e(CONTACT_EMAIL) ?></a> or by mail to A Believers EMS LLC, 13940 Bammel North Houston Rd, Houston, TX 77066. You may also file with the U.S. Department of Health and Human Services, Office for Civil Rights. We do not retaliate against anyone for filing a complaint.</p>

            <h2>Privacy Officer</h2>
            <p>Direct HIPAA-related questions to our Privacy Officer, Rodney Baker, at (281) 587-8700.</p>
        </div>
    </section>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
