← toolkit.bot

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:

Legal guides and practice publications:

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):

Convert this quarter:

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:

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:

UK-Specific Note

For UK law firms, the EAA does not apply directly (post-Brexit). However:

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

Related guides