\documentclass[12pt]{article}
\usepackage[a4paper, top=2.5cm, bottom=2.5cm, left=4cm, right=3cm]{geometry}
\usepackage{times}
\usepackage{setspace}
\usepackage{titlesec}
\usepackage{tocloft}
\usepackage[hidelinks]{hyperref} 
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{caption}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\DeclareFieldFormat{apacase}{#1}
\usepackage{lipsum} % For dummy text
% Font and spacing settings
\renewcommand{\rmdefault}{ptm}
\setstretch{1.5}
% Section formatting
\titleformat{\section}{\normalfont\fontsize{16}{19}\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\fontsize{14}{17}\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\fontsize{12}{15}\scshape}{\thesubsubsection}{1em}{}
% Table of contents formatting
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftsecfont}{\normalfont}
\renewcommand{\cftsubsecfont}{\normalfont}
% Caption customisation
\captionsetup[figure]{name={Figure},labelfont={bf},labelsep=period}
\begin{document}
% Front matter
\pagenumbering{roman}
% Cover Page
\begin{titlepage}
    \begin{spacing}{1.2}
    \begin{flushleft}
        Ludwig-Maximilians-Universität München\\
        Department of English Studies\\
        (Semester)\\
        (Course Title)\\
        (Name of Instructor)
    \end{flushleft}
    
    \vspace*{\fill}
    
    \begin{center}
        \textbf{\LARGE A Very Fascinating Project}
    \end{center}
    
    \vspace*{\fill}
    
    \begin{center}
        (Your Name)\\
        (Your Student ID (Matrikelnummer))\\
        \textit{\href{mailto:your.email@example.com}{(Your Campus E-mail Address)}}\\
        (Course of Study, Majors/Minors)\\
        (Number of Semesters)
    \end{center}
    \end{spacing}
\end{titlepage}
% Table of Contents
\newpage
\renewcommand{\contentsname}{Table of Contents}
\tableofcontents
% List of Figures
\clearpage
\captionsetup[figure]{list=yes}
\listoffigures
\clearpage
% List of Tables
\clearpage
\captionsetup[table]{list=yes} 
\listoftables
\clearpage
% Main matter
\clearpage
\pagenumbering{arabic}
% Start of main text
\section{Introduction}
% Your introduction goes here
\lipsum[1]
\section{Literature Review}
% Your literature review goes here
\lipsum[2]
\subsection{Subsection}
% Your subsection content goes here
\lipsum[8]
\lipsum[5]
\subsubsection{Subsubsection}
% Your subsubsection content goes here
\lipsum[9]
\subsubsection{Subsubsection}
\lipsum[4]
\begin{figure}[htbp]
    \centering
    \includegraphics{figures/example.png}
    \caption{The composition process through Functional Application}
    \label{fig:enter-label}
\end{figure}
\lipsum[6]
\section{Methodology}
% Your methodology goes here
\lipsum[3]
\section{Results}
% Your results go here
\lipsum[23]
\section{Discussion}
% Your discussion goes here
\lipsum[46]
\section{Conclusion}
% Your conclusion goes here
\lipsum[54]
% bibliography or references
\clearpage
\begin{refsection}[references.bib]
\nocite{*}
\printbibliography
\thispagestyle{empty}
\end{refsection}
% Appendix
\clearpage
\pagenumbering{alph}
\section*{Appendix I}
\addcontentsline{toc}{section}{Appendix}
\begin{table}[htbp]
    \centering
    \caption{Example Table}
    \label{tab:example}
    \begin{tabular}{ccc}
        \toprule
        \textbf{Column 1} & \textbf{Column 2} & \textbf{Column 3} \\
        \midrule
        1 & A & X \\
        2 & B & Y \\
        3 & C & Z \\
        \bottomrule
    \end{tabular}
\end{table}
\lipsum[33]
% Add your appendix content here
\end{document}