I want to adjust the title indentation for all the section and subsection titles as shown in the image. How can I achieve this using the titlesec or other similar packages?
This is a minimal version of my current code.
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
[...]
\usepackage{geometry}
\geometry{
a4paper,
left=3.5cm,
right=2cm,
top=3.5cm,
bottom=2cm
}
[...]
\begin{document}
\section{Introduction}
\subsection{Background}
\subsubsection{Machine Reading Comprehension (MRC)}
MRC is a subfield.........
[...]
\end{document}
I am using a documentclass{report} and my section titles are in the left edge of the paper by default. But I would like to indent them 3.5mm from the left edge of the paper as shown in the above image.



