EAA 2026 for Legal Documents: Law Firms, Legal Publishers, and Court Document Accessibility
The European Accessibility Act (Directive 2019/882, enforcement active June 28, 2026) covers services provided commercially in the EU. Legal services — particularly documents that clients access to use legal services — are within scope.
The specific technical issue: legal documents are almost universally distributed as PDF. Fixed-layout PDF cannot satisfy WCAG 1.4.10 Reflow. And legal document layouts are exactly the kind that fail hardest — dense text, complex clause numbering, multi-column tables of contents, appendices with regulatory references.
Which Legal Organisations Are in Scope
Law firms and legal services providers
Consumer-facing legal services are within EAA scope. Documents a client accesses to use the legal service — engagement letters, terms of business, privacy notices, consumer legal information — must be accessible. Where a law firm publishes client-facing guides, FAQs, or information documents as PDFs on their website, those are in scope as documentation provided in connection with a commercial service.
Legal publishers
Publishers distributing legal content commercially — practice guides, case law reporters, statutory compilations, regulatory guidance — are in scope as digital content providers. Thomson Reuters Practical Law, LexisNexis, Wolters Kluwer, and equivalent publishers distributing EU content digitally are affected.
In-house legal teams
Where an organisation’s legal function publishes policy documents, compliance notices, or contracts for employees or customers to read, those fall within the broader EAA requirements for the organisation’s digital content.
Courts and public legal institutions
EU member state courts and public legal bodies fall under the Web Accessibility Directive (Directive 2016/2102) and EN 301 549. Court documents published on official websites, judgment databases, and legal registers are within scope of EN 301 549 Clause 10 (non-web documents).
Why Legal Documents Fail WCAG 1.4.10
Legal documents are designed for precision and completeness, not reflowable reading. Standard legal document layouts include:
Contracts and agreements:
- Clause numbering in margins
- Multi-level indentation (1. → 1.1 → 1.1.1)
- Tables summarising key terms and definitions
- Signature blocks in fixed-width columns
- Schedules with tabular data
Legal guides and practice publications:
- Two-column text with wide margins for annotations
- Case citations in a separate column
- Complex tables of contents
- Footnotes with cross-references
At 400% zoom — the standard zoom level used by people with low vision — a two-column legal document PDF requires horizontal scrolling to read each line. That is the WCAG 1.4.10 failure. It cannot be remediated by tagging (PDF/UA, Acrobat Pro, CommonLook) — the fixed-layout model of PDF is the cause.
The Two-Part Compliance Gap
Legal documents have a specific complication: many are legally significant documents that cannot be modified. A contract, once executed, cannot have its PDF replaced with a different format. The original signed PDF is the legal instrument.
The EAA does not require modifying signed legal instruments. It requires that the information is accessible. The practical approach:
Dual-format distribution: Keep the PDF as the authoritative legal document. Provide an EPUB3 as the accessible reading version for clients who need it. Both contain identical content; the EPUB3 is the accessible way to read it.
Accessible format on request: Under equality legislation (Equality Act 2010 in UK, national implementations of the EU Equal Treatment Directive), legal service providers must provide documents in accessible formats when a client requests it. Having EPUB3 conversion capability satisfies this without maintaining a parallel document management process.
For Law Firms: Priority Documents
Convert immediately (client-facing, in active use):
- Client care letters and terms of business
- Privacy notices and data subject information
- Consumer legal information on the firm’s website
- Standard form contracts published for client download
Convert this quarter:
- Know Your Client (KYC) documentation guides
- FAQs and legal guides published as PDF
- Accessibility policy and complaints procedure
For Legal Publishers
Legal publishers face the same PDF-origin problem at scale. A practice guide, statutory compilation, or case law reporter typically runs to hundreds of pages. The two-column PDF layout standard in legal publishing fails WCAG 1.4.10 at any complex layout.
The conversion economics for legal publishers:
- API plan: $29/month, 100 requests/hour
- A legal publisher with 5,000 PDF publications can process the full catalogue in approximately 50 hours of API time
- Cost: two months of API access ($58 total) vs. $200–1,000 per document for specialist accessibility agency remediation
EPUB3 from toolkit.bot preserves complex clause hierarchies as nested HTML lists, tables with proper header structure (critical for legal tables of contents and definition tables), cross-references as active hyperlinks, and heading structure enabling EPUB3 navigation document generation.
API Integration for Document Management Systems
Law firms using iManage, OpenText, NetDocuments, or SharePoint can integrate toolkit.bot at the document publication step:
import httpx
def publish_accessible_legal_document(pdf_bytes, matter_ref, doc_type):
# Generate EPUB3 for accessible distribution alongside legal document PDF.
resp = httpx.post(
"https://toolkit.bot/api/convert",
headers={"Authorization": f"Bearer {API_KEY}"},
files={"file": (f"{matter_ref}_{doc_type}.pdf", pdf_bytes, "application/pdf")},
timeout=120
)
resp.raise_for_status()
return resp.content # EPUB3 binary -- store alongside PDF in DMS
This integrates accessible EPUB3 generation at the point where documents are finalised for client distribution — without changing the PDF workflow.
ACE Validation and Client Documentation
For law firms implementing accessible document distribution as part of a broader EAA compliance programme, ACE by DAISY validation provides documentation:
npm install -g @daisy/ace
ace --outdir ./compliance-report ./client-terms.epub
The ACE report confirms WCAG 2.1 AA conformance including WCAG 1.4.10 Reflow. This documentation:
- Supports the firm’s accessibility statement
- Evidences good-faith compliance effort if a client complaint is made
- Satisfies Solicitors Regulation Authority (SRA) requirements for accessible service delivery in the UK
UK-Specific Note
For UK law firms, the EAA does not apply directly (post-Brexit). However:
- UK Equality Act 2010: Requires reasonable adjustments for disabled clients, including providing documents in accessible formats on request
- SRA Accessibility Guidelines: The SRA expects firms to make reasonable adjustments for disabled clients accessing legal services
- UK firms distributing documents to EU clients, or with EU offices, have EAA exposure for that portion of their client base
Enforcement Context
EAA enforcement for legal services documents comes through national market surveillance authorities, disability organisations, and individual client complaints. Legal services regulators (SRA in UK, Bar Council equivalents in EU member states) are beginning to incorporate digital accessibility into their conduct requirements. An inaccessible client-facing document is both an EAA risk and a regulatory risk.
Convert a contract or legal guide PDF — free, no account required.
Convert PDF to EPUB3 → API for DMS integration