Hammond Institute

Secure Payment - Hammond Institute /* --- Basic Page Styles --- */ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #f4f7f9; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; padding: 20px; } /* --- Main Payment Container --- */ .payment-container { background-color: #ffffff; border-radius: 12px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); width: 100%; max-width: 550px; overflow: hidden; } .payment-header { background-color: #007bff; color: white; padding: 25px 30px; border-bottom: 1px solid #e0e0e0; } .payment-header h1 { margin: 0; font-size: 24px; font-weight: 600; } .payment-header p { margin: 5px 0 0; opacity: 0.9; } /* --- Tab Navigation --- */ .payment-tabs { display: flex; background-color: #f1f1f1; } .tab-link { flex: 1; padding: 15px; text-align: center; cursor: pointer; border: none; background-color: transparent; font-size: 16px; font-weight: 500; color: #555; transition: background-color 0.3s, color 0.3s; border-bottom: 3px solid transparent; } .tab-link.active { color: #007bff; border-bottom: 3px solid #007bff; } .tab-link:hover:not(.active) { background-color: #e9ecef; } /* --- Tab Content --- */ .payment-content { padding: 30px; } .tab-content { display: none; /* Hide all tabs by default */ } .tab-content.active { display: block; /* Show only the active tab */ } /* --- Informational Content (All Tabs) --- */ .info-box { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; line-height: 1.6; } .info-box h3 { margin-top: 0; color: #007bff; } .info-box p { margin-bottom: 15px; } .info-box .details { margin-bottom: 10px; font-size: 16px; } .info-box strong { display: inline-block; min-width: 130px; color: #333; } .info-box code { background-color: #e9ecef; padding: 3px 6px; border-radius: 4px; font-family: "Courier New", Courier, monospace; font-size: 15px; } .info-box .important { margin-top: 20px; padding: 15px; background-color: #fffbe6; border-left: 4px solid #ffc107; font-size: 15px; font-weight: 500; } /* --- Responsive Design --- */ @media (max-width: 600px) { body { padding: 0; background-color: #ffffff; } .payment-container { border-radius: 0; box-shadow: none; max-width: 100%; } .payment-tabs { flex-wrap: wrap; } .tab-link { flex-basis: 50%; } }

Secure Payment

Please choose a payment method below to complete your payment.

Pay with Credit Card

Click the button below to pay securely. You will be redirected to our trusted payment partner, Pin Payments, where you can enter the amount and your card details.

Pay Now

PayID Details

Use your banking app to make an instant payment to our PayID. Please ensure the name matches before confirming the payment.

PayID Type: ABN
PayID: 46 003 307 542
Name: HAMMOND INSTITUTE PTY LTD
Important: Please include your Full Name or Invoice Number in the payment description field.

Direct Deposit Details

Please use the following bank account details for a direct deposit through your online banking.

Account Name: Hammond Institute
BSB: 033186
Account Number: 782151
Reference: Mention your Full Name (Mandatory-for referring payment to your Name). Payments may take 1-2 business days to clear.
document.addEventListener('DOMContentLoaded', function () { // --- Tab Switching Logic --- const tabs = document.querySelectorAll('.tab-link'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(tab => { tab.addEventListener('click', () => { const targetId = tab.getAttribute('data-tab'); tabs.forEach(t => t.classList.remove('active')); contents.forEach(c => c.classList.remove('active')); tab.classList.add('active'); document.getElementById(targetId).classList.add('active'); }); }); });
Scroll to Top