Skip to content

Compliance Penalties — Fines, Damages, and Market Consequences

DodaTech Updated 2026-06-28 4 min read

In this tutorial, you will learn about Compliance Penalties. We cover key concepts, practical examples, and best practices to help you master this topic.

Accessibility non-compliance penalties include ADA fines up to 150,000 dollars, EAA fines up to 5 percent of turnover, AODA personal liability of 100,000 dollars per day for directors, and unlimited damages in UK and Australian courts.

What You'll Learn

You will learn the penalties for non-compliance across major accessibility laws, how penalties are calculated, and the business consequences beyond fines.

Why It Matters

The financial consequences of non-compliance can far exceed the cost of proactive accessibility. Understanding penalties helps you make the business case for compliance.

Real-World Use

DodaTech's risk analysis showed that proactive WCAG AA compliance costs less than 10 percent of the potential annual penalty exposure. This data drove executive support for the accessibility program.

flowchart TD
  A[Compliance Penalties] --> B[US]
  A --> C[EU]
  A --> D[Canada]
  A --> E[UK]
  A --> F[Australia]
  B --> G[ADA: 75k-150k per violation]
  B --> H[Section 508: contract loss]
  C --> I[EAA: up to 5% of turnover]
  D --> J[AODA: 100k per day, personal]
  E --> K[Equality Act: unlimited damages]
  F --> L[DDA: unlimited damages]

United States Penalties

ADA Title III

First violation: civil penalty up to 75,000 dollars. Second violation: up to 150,000 dollars. Plaintiff attorney fees and settlement costs averaging 50,000 dollars plus.

Section 508

Contract cancellation, debarment from future federal contracts, and complaints through agency 508 coordinators.

European Union Penalties

European Accessibility Act

Each member state sets penalties. Maximum penalties up to 5 percent of annual turnover in some countries. Market surveillance authorities can restrict or prohibit products.

Canada Penalties

AODA

Fines up to 100,000 dollars per day for directors and officers personally. Organizations face additional fines.

UK and Australia Penalties

Equality Act 2010

Unlimited damages in civil court. Claims brought to county court.

Disability Discrimination Act 1992

Unlimited damages in federal court. Enforceable undertakings from the Australian Human Rights Commission.

function calculatePenaltyExposure(annualRevenue, applicableLaws) {
  const penalties = {
    'ada': Math.min(150000, annualRevenue * 0.01),
    'eaa': annualRevenue * 0.05,
    'aoda': 100000 * 365,
    'equality-act': annualRevenue * 0.1,
    'dda': annualRevenue * 0.1
  };

  const exposure = {};
  let total = 0;
  applicableLaws.forEach(law => {
    if (penalties[law]) {
      exposure[law] = penalties[law];
      total += penalties[law];
    }
  });

  return { exposure, totalAnnualPenaltyExposure: total };
}

console.log(calculatePenaltyExposure(10000000, ['ada', 'eaa']));

Expected output:

{ exposure: { ada: 100000, eaa: 500000 }, totalAnnualPenaltyExposure: 600000 }

Beyond Fines

Penalties go beyond money. Reputation damage from accessibility lawsuits affects customer trust. Procurement exclusion means losing government and enterprise customers. SEO degradation reduces organic traffic.

Common Mistakes

1. Underestimating Total Penalty Exposure

Fines are only part of the cost. Attorney fees, settlements, remediation costs, and lost revenue add up.

2. Ignoring Personal Liability

AODA imposes personal liability on directors and officers. Individuals can be fined 100,000 dollars per day.

3. Thinking Settlements Are Always Small

While average settlements are 50,000 dollars, large verdicts and multi-plaintiff cases can reach millions.

4. Forgetting About Procurement Exclusion

Lost contracts can cost more than fines. Government and enterprise buyers increasingly require accessibility.

5. Not Considering Reputational Damage

A public accessibility lawsuit damages brand reputation. Customers choose accessible competitors.

6. Assuming Compliance Is Cheaper Than Penalties

Proactive compliance is almost always cheaper than penalties plus remediation. But the savings only apply if you actually comply.

7. Ignoring Cumulative Risk

Multiple applicable laws mean multiple penalty exposures. A global company faces risk in every market.

Practice Questions

1. What is the maximum ADA Title III civil penalty?

75,000 dollars for first violation, up to 150,000 dollars for subsequent violations.

2. What is the maximum EAA penalty?

Up to 5 percent of annual turnover in some EU member states.

3. What is unique about AODA penalties?

Personal liability for directors and officers up to 100,000 dollars per day.

4. What are the non-financial consequences of non-compliance?

Reputation damage, procurement exclusion, and SEO degradation.

5. Challenge: Calculate the total penalty exposure for a global company with 50 million dollars in annual revenue operating in the US, EU, and Canada.

FAQ

Can I be fined under multiple laws for the same issue?

Yes. Different laws impose separate obligations. A single accessibility issue could violate multiple laws.

How are EAA penalties enforced?

Each EU member state designates a market surveillance authority. They investigate and can impose penalties.

Is the 100k per day AODA penalty realistic?

It is the maximum penalty. Courts consider the severity and duration of non-compliance.

Do penalties apply retroactively?

Penalties apply from the date the law takes effect. Past violations before the effective date are generally not penalized.

How do I budget for penalty risk?

Treat accessibility as an insurance cost. The cost of compliance is the premium. The penalty is the deductible.

Mini Project

Create a penalty exposure matrix for a fictional global company. Include each applicable law, maximum penalty, likelihood of enforcement, and total exposure. Compare this to the cost of proactive compliance.

What's Next

Learn about the Legal Project Manager approach to managing accessibility compliance. Then complete the Laws Project to apply everything you have learned.

Built by the developers of DodaTech

Doda Browser, DodaZIP & Durga Antivirus Pro