<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>NDIS Admin Setup | Documentation & Compliance Support NSW</title>

<meta name="description" content="Professional NDIS admin setup and documentation support for sole traders and small providers in NSW and across Australia.">

<style>

* { box-sizing: border-box; margin: 0; padding: 0; }

body {

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    line-height: 1.6;

    background: #f4f6f9;

    color: #333;

}

nav {

    background: #0b3d91;

    padding: 15px 20px;

    position: sticky;

    top: 0;

}

nav ul {

    list-style: none;

    display: flex;

    justify-content: center;

    gap: 30px;

}

nav a {

    color: white;

    text-decoration: none;

    font-weight: 500;

}

header {

    background: #0b3d91;

    color: white;

    text-align: center;

    padding: 80px 20px;

}

header h1 {

    font-size: 36px;

    margin-bottom: 20px;

}

header p {

    font-size: 18px;

    margin-bottom: 30px;

}

.btn {

    background: #ff6b35;

    color: white;

    padding: 14px 28px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: bold;

}

section {

    max-width: 1100px;

    margin: auto;

    padding: 70px 20px;

}

h2 {

    margin-bottom: 25px;

    color: #0b3d91;

}

.grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;

}

.card {

    background: white;

    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

}

ul {

    padding-left: 20px;

    margin-top: 10px;

}

.contact-form input,

.contact-form textarea {

    width: 100%;

    padding: 14px;

    margin-bottom: 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

}

.contact-form button {

    background: #0b3d91;

    color: white;

    padding: 14px 28px;

    border: none;

    border-radius: 6px;

    cursor: pointer;

}

footer {

    background: #0b3d91;

    color: white;

    text-align: center;

    padding: 25px;

    font-size: 14px;

}

</style>

</head>

<body>

<nav>

<ul>

<li><a href="#services">Services</a></li>

<li><a href="#about">About</a></li>

<li><a href="#contact">Contact</a></li>

</ul>

</nav>

<header>

<h1>NDIS Admin Setup & Documentation Support</h1>

<p>Helping sole traders and small NDIS providers build organised, professional admin systems in NSW and across Australia.</p>

<a href="#contact" class="btn">Book Free Consultation</a>

</header>

<section id="services">

<h2>Our Services</h2>

<div class="grid">

<div class="card">

<h3>Starter Setup Package</h3>

<ul>

<li>Custom Service Agreement</li>

<li>Participant Intake Form</li>

<li>Risk Assessment Template</li>

<li>Incident Report Form</li>

<li>Progress Note Template</li>

<li>Invoice Template</li>

<li>Basic Policy Bundle</li>

<li>Digital Folder Structure Guide</li>

</ul>

<p><strong>From $850</strong></p>

</div>

<div class="card">

<h3>Ongoing Admin Support</h3>

<ul>

<li>Document Updates</li>

<li>Template Revisions</li>

<li>Compliance Formatting</li>

<li>System Improvements</li>

<li>Remote Support</li>

</ul>

<p><strong>Monthly Packages Available</strong></p>

</div>

<div class="card">

<h3>Custom Solutions</h3>

<ul>

<li>Policy Development</li>

<li>Audit Preparation Support</li>

<li>Document Branding</li>

<li>Basic Website Setup</li>

</ul>

</div>

</div>

</section>

<section id="about">

<h2>About</h2>

<p>With over 11 years of experience in the disability sector, we understand the real-world challenges faced by NDIS providers. Our focus is creating practical, easy-to-use admin systems that support compliance while keeping your business organised and professional.</p>

<p>We provide administrative documentation and business setup support. We do not provide legal advice or auditing services and do not guarantee audit outcomes.</p>

</section>

<section id="contact">

<h2>Book a Free Consultation</h2>

<form class="contact-form" action="https://formspree.io/f/YOURCODE" method="POST">

<input type="text" name="name" placeholder="Your Name" required>

<input type="email" name="email" placeholder="Your Email" required>

<input type="text" name="business" placeholder="Business Name">

<textarea name="message" rows="5" placeholder="Tell us about your business"></textarea>

<button type="submit">Submit</button>

</form>

<p style="margin-top:15px;">We will respond within 24 hours.</p>

</section>

<footer>

<p>© 2026 NDIS Admin Setup | NSW Australia</p>

</footer>

</body>

</html>