Select Page
<main class="w-full max-w-4xl mx-auto my-8 md:my-12">
    <div id="calculator-screen" class="calculator-card-container">
        <h1 class="text-3xl md:text-4xl font-bold text-teal-800 mb-6 text-center">Age Pension Service Cost Calculator</h1>
        <p class="text-stone-600 max-w-2xl mx-auto mb-8 text-lg text-center">
            Answer the following questions to get an estimated cost for your Age Pension Service.
        </p>

        <div id="questions-area" class="space-y-6 mb-8">
            <!-- Questions will be dynamically injected here by JavaScript -->
        </div>

        <div class="flex justify-center mt-8">
            <button id="calculate-btn" class="bg-teal-600 hover:bg-teal-700 text-white font-bold py-3 px-8 rounded-lg shadow-md transition-transform transform hover:scale-105 disabled:bg-stone-400 disabled:cursor-not-allowed" disabled>
                Calculate Cost
            </button>
        </div>

        <div id="result-area" class="hidden mt-10 text-center bg-teal-50 p-6 rounded-lg border border-teal-200">
            <h2 class="text-2xl font-bold text-teal-800 mb-4">Estimated Service Cost:</h2>
            <div id="calculated-price" class="text-6xl font-extrabold text-teal-700 mb-4">$0</div>
            <p id="price-description" class="text-stone-600 text-lg"></p>
            <!-- Changed from button to anchor tag with link -->
            <a id="apply-now-link" href="https://assets.supered.com.au/portal/assets/retirement_essentials/EGuide1.html?" target="_blank" class="mt-6 bg-teal-600 hover:bg-teal-700 text-white font-bold py-2 px-6 rounded-lg shadow-md transition-transform transform hover:scale-105 inline-flex items-center justify-center">
                Apply Now
            </a>
        </div>
    </div>
</main>

<!-- Loading Overlay -->
<div id="loading-overlay" class="loading-overlay hidden">
    <div class="spinner"></div>
</div>
Drew Patchell