Minipage-Enumerate combination problems

#enumerateminipage

I have been trying to split the page to save space to make it look more appealing.
This is the code I came up with:

\subsection*{Services:}
\begin{enumerate}
    \begin{minipage}{0.45\textwidth}
    \item Bows
    \begin{itemize}
        \item Packaging for bows
        \item Bows for bottles
        \item Cosmetic bows
        \item Panettone-grind
    \end{itemize}
    \end{minipage}%
   \hfill
    \begin{minipage}{0.45\textwidth}
    \item Ribbons
    \begin{itemize}
        \item Plain ribbons
        \item Motiv ribbons
        \item Individualized ribbons
    \end{itemize}
\end{minipage}
\end{enumerate}

and this is how it looked:

Look

For the most part it is what I wanted it but I wanted the numbers to be at the same level not have that weird offset.

I have also tried to make a line in between the minipages. this is how I thought I can do it:

\subsection*{Services:}
\begin{enumerate}
    \begin{minipage}{0.45\textwidth}
    \item Bows
    \begin{itemize}
        \item Packaging for bows
        \item Bows for bottles
        \item Cosmetic bows
        \item Panettone-grind
    \end{itemize}
    \end{minipage}%
  % \hfill
    \begin{minipage}{0.45\textwidth}
    \begin{tabular}{|p{\textwidth}}
    \item Ribbons
    \begin{itemize}
        \item Plain ribbons
        \item Motiv ribbons
        \item Individualized ribbons
    \end{itemize}
    \end{tabular}
\end{minipage}
\end{enumerate}

And this is how it turned out :
Second

btw I don't know what to do, I thought I can probably do it by manipulating margins for any of these components but I'm fairly new and don't know what to do.

Thank you very much

Best Answer

Using multicols may be a good solution, I think: simple and it works.

\documentclass{article}
\usepackage{multicol}
\setlength\columnseprule{0.4pt}

\begin{document}
\subsection*{Services:}

\begin{multicols}{2}
  \begin{enumerate}
    \item Bows
    \begin{itemize}
        \item Packaging for bows
        \item Bows for bottles
        \item Cosmetic bows
        \item Panettone-grind
    \end{itemize}
\columnbreak
    \item Ribbons
    \begin{itemize}
        \item Plain ribbons
        \item Motiv ribbons
        \item Individualized ribbons
    \end{itemize}
\end{enumerate}
\vspace*{\fill}
\end{multicols}

\end{document}

enter image description here

Related Question