<?php include '../partials/header.php'; ?>

<!-- Main Container -->
<div class="bg-white min-h-screen">
    <!-- Hero Section -->
    <div class="bg-[#636363] py-16">
        <div class="max-w-7xl mx-auto service-content px-4">
            <div class="text-center">
                <h1 class="text-5xl leading-[57.2px] font-questrial text-white">
                    Document Reviews
                </h1>
            </div>
        </div>
    </div>

    <!-- Main Content -->
    <div class="flex justify-center">
        <!-- Left Column - Main Content -->
        <div class="flex-1 px-24 py-16 max-w-4xl mx-auto">
            <div class="space-y-12">
                <!-- Introduction -->
                <div class="text-[#333333] text-base leading-[24px] font-questrial">
                    <p>When you're trying to internally understand and strategize around a particular case, it makes sense to take stock of all the information you have. Document Reviews have the advantage, at least initially, of being a private opinion that can be useful in determining strategy and sometimes early settlement. We can help with:</p>
                </div>

                <!-- Services List -->
                <ul class="pl-10 space-y-1">
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">File Reviews</span>
                    </li>
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">Rebuttals</span>
                    </li>
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">File Audits</span>
                    </li>
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">WCB Challenges</span>
                    </li>
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">Toxicology</span>
                    </li>
                    <li class="flex items-center">
                        <div class="w-2 h-2 bg-[#333333] rounded-full mr-3"></div>
                        <span class="text-[#333333] text-base leading-[24px] font-questrial">Literature Reviews</span>
                    </li>
                </ul>

                <!-- Caveats Section -->
                <div class="text-[#333333] text-base leading-[24px] font-questrial">
                    <p>There are of course caveats with document reviews: they are only as good as the quality of the documentation and how recent it is. There are also caveats that the person in question has not been personally interviewed and examined.</p>
                </div>

                <!-- Expertise Section -->
                <div class="text-[#333333] text-base leading-[24px] font-questrial">
                    <p>Nevertheless, it pays to have an expert to help you, especially when the documents are outside your area of expertise — such as complicated medical reports. Getting your case better understood from a medical perspective at this stage is foundational to success.</p>
                </div>
            </div>
        </div>

        <?php include '../partials/service-sidebar.php'; ?>
    </div>
</div>

<?php include '../partials/footer.php'; ?> 