% =====================================================================
%  JENNIFER RESUME TEMPLATE  (LaTeX port)
%  Career Reload  |  https://www.careerreload.com/
%  Serif design: centered name/headers, left body, right-aligned dates.
% ---------------------------------------------------------------------
%  Compile with XeLaTeX:   xelatex jennifer-resume.tex
% =====================================================================

\documentclass[10pt,letterpaper]{article}

\usepackage[top=0.5in,bottom=0.5in,left=0.5in,right=0.5in]{geometry}

% --- Font: any serif system font. Liberation Serif (Times-compatible). -
\usepackage{fontspec}
\setmainfont{Liberation Serif}

\usepackage{xcolor}
\definecolor{ink}{HTML}{494A49}      % all text (dark gray)
\definecolor{rulegray}{HTML}{BFC1BF} % light rule under the name
\definecolor{bandblue}{HTML}{E2E8F0} % shaded band behind section headers

\usepackage{setspace}
\setstretch{1.29}          % generous leading, matches the reference

\usepackage{enumitem}
\usepackage[hidelinks]{hyperref}

\setlength{\parindent}{0pt}
\setlength{\parskip}{4pt}

\setlist[itemize]{
  leftmargin=1.4em,
  itemsep=2pt,
  topsep=2.5pt,
  parsep=0pt,
  label=\textcolor{ink}{\textbullet}
}

% --- Separator for the contact line (pipe) ----------------------------
\newcommand{\sep}{~~\textbar~~}

% --- Centered header on a full-width light-blue band ------------------
\newcommand{\sect}[1]{%
  \vspace{6pt}%
  {\setlength{\fboxsep}{0pt}%
   \noindent\colorbox{bandblue}{\makebox[\linewidth][c]{%
     \rule[-8.5pt]{0pt}{25pt}%
     \fontsize{11}{13}\selectfont\addfontfeature{LetterSpace=16.0}\MakeUppercase{#1}}}}%
  \par\vspace{4pt}%
}

% --- Education entry: degree left, bold date right --------------------
\newcommand{\eduentry}[2]{{#1}\hfill{\bfseries #2}\par}

% --- Experience entry: bold title left, bold date right --------------
\newcommand{\expentry}[2]{{\bfseries #1}\hfill{\bfseries #2}\par}

% --- Italic sub-line (company/location, honors) ----------------------
\newcommand{\subline}[1]{{\itshape #1}\par}

% =====================================================================
%  DOCUMENT
% =====================================================================
\begin{document}
\color{ink}
\pagestyle{empty}

% ---------- Header ----------
\centerline{\fontsize{26}{30}\selectfont\addfontfeature{LetterSpace=6.0}\MakeUppercase{Jennifer Robinson}}
\vspace{5pt}
{\color{rulegray}\rule{\linewidth}{0.8pt}}\par
\vspace{5pt}
\centerline{\fontsize{10}{13}\selectfont 212-123-1234 \sep{} email@CareerReload.com \sep{} linkedin.com/company/careerreload \sep{} City name, NY, 33407}

% ---------- Summary Statement ----------
\sect{Summary Statement}
Use this area for your elevator pitch to promote your awesome skills and achievements that can truly help the company you're applying to. If you have specific number or percentages to quantify any achievements, use them. Show why you are uniquely qualified, instead of just saying so. Keep this section short and concise. Integrate keywords and qualifications aligned with the company's specific needs. You should include the most relevant, impressive information.

{\centering\itshape Multi-faceted professional with expertise in:\par}
{\centering Digital product design - Information Architecture - Print and web design - Entertainment Operations \& Management - Marketing \& Branding - Board Relations - User Experience Research - Capital Improvements\par}

% ---------- Education & Certifications ----------
\sect{Education \& Certifications}
\eduentry{Master of Arts in Economics, Your University Here}{May 20XX}
\subline{Summa cum laude, Presidents list}

\vspace{4pt}
\eduentry{Certification Name, Organization}{May 20XX}

% ---------- Experience ----------
\sect{Experience}
\expentry{Job Title Goes Here}{May 20XX - Present}
\subline{Company, Location}
In few lines before the bullet points, summarize your main responsibilities and provide information about the organization. For your present position you can use present tense, for the rest, use past tense.
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first. If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Boldfacing growth percentages, dollar figures, and other key accomplishments is also a good strategy.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item The secret to an outstanding and great resume is to remove the pronouns (he, she, I). Pronouns are redundant.
  \item Bullet points ensure that your key achievements will be seen. Avoid listing irrelevant experience.
\end{itemize}

\vspace{4pt}
\expentry{Job Title Goes Here}{May 20XX - Dec 20XX}
\subline{Company, Location}
In few lines before the bullet points, summarize your main responsibilities using past tense and provide information about the organization.
\begin{itemize}
  \item Highlight your most relevant qualifications and accomplishment for the job by listing them first. If you have specific numbers or percentages to quantify your accomplishments and qualifications, use them.
  \item Boldfacing growth percentages, dollar figures, and other key accomplishments is also a good strategy.
  \item Start your bullet points with a powerful action verb like ``managed''.
  \item Bullet points ensure that your key achievements will be seen. Keep it short and concise.
\end{itemize}

\end{document}
