/* --- NDIS PAGE --- */
.ndis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ndis-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon-circle-gold {
    width: 70px;
    height: 70px;
    background-color: #fff8e1;
    color: #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
}

.ndis-card h3 {
    color: #003366;
    margin-bottom: 15px;
}

.ndis-cta-box {
    background-color: #003366;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.ndis-cta-box h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.ndis-cta-box p {
    color: #dbeaff;
    margin-bottom: 30px;
    font-size: 18px;
}

@media (max-width: 900px) {
    .ndis-grid { grid-template-columns: 1fr; }
}