The problem with the code below is, it treats the Safety section as its own independent section. So in the table of contents, I've got 'Appendices' and 'Safety' as separate sections. I want Safety to look like a subsection of the 'Appendices' section.
Also, how do I rename 'Appendices' to 'Appendix'? It just looks better. Is it through a \renewcommand?
\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}
\begin{document}
\section{Introduction}
this is my introduction
\appendix
\appendixpage
\section{Safety}
\end{document}

\renewcommand{\appendixpagename}{Appendix}after loading theappendixpackage (see the package documentation, page 3). – jub0bs May 08 '13 at 11:25