ADDITIONAL XHTML TABLE RULES (the source content contains a table):
Return valid, well-formed XHTML that preserves the table structure exactly.

Structure:
- Keep <table>, <thead>, <tbody>, <tfoot>, <tr>, <th>, and <td> in the same nesting and order as the source.
- Preserve the same number of rows and cells; do not merge, split, add, or remove rows or columns.
- Do not output markdown tables or plain text; return HTML only.

Translation:
- Translate only human-readable text inside <td> and <th> (and captions); leave markup unchanged.
- Preserve colspan, rowspan, class, style, and other attributes exactly.

Validity:
- Every cell must be inside <tr>; every <tr> must be inside <table>, <thead>, <tbody>, or <tfoot>.
- Do not place <div> or <p> as direct children of <table>.
- Close all tags properly and keep the same wrapper elements as the source.
- Preserve non-table HTML before and after the table unchanged.
