Bonjour !

J'essaye de faire un tableau mais je vous avouerai que je galère un peu là.

Je recontre 2 problème:
1) Malgré un centering, je n'arrive pas à centrer mon tableau
2) quand j'écris trop de caractères dans une colonne, sa deuxième sous colonne s'agrandit décalant toutes les autres colonnes hors feuille. Je souhaiterais que les tailles de toutes mes sous colonnes soit figé comme le premier tableau.

Code:
\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{float}
\usepackage{fancyhdr}
\usepackage[left=2.5cm,right=2.5cm,top=2cm,bottom=2cm]{geometry}
\usepackage{tabularray}
\usepackage{colortbl}


\begin{figure}[H]
    \centering
    \begin{tblr}{
        vlines, hlines,
        colspec={Q[1.4cm, c] Q[1.4cm, c] *{8}{Q[1.4cm, c]}},
        row{1} = {font=\bfseries},
        cell{1}{3} = {c=2}{c}, 
        cell{1}{5} = {c=2}{c}, 
        cell{1}{7} = {c=2}{c}
    }
        & aaa & \SetCell[c=2]{c} aaaaaa & & \SetCell[c=2]{c} aaaaa & & \SetCell[c=2]{c} aaaaa \newline aaaa\newline 1234567 & & aaaaaaa  & aaaaaaa \\
        & & Sub 1 & Sub 2 & Sub 1 & Sub 2 & Sub 1 & Sub 2 & & \\
        Row 2 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
        Row 3 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
        Row 4 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
        Row 5 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
        Row 6 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
        Row 7 & Content & Content & Content & Content & Content & Content & Content & Content & Content \\
    \end{tblr}
    \caption{Titre }
    \label{fig:mon_tableau}
\end{figure}
1.png2.png

Merci pour votre aide !