\documentclass{article}
\usepackage{fancyhdr,graphicx,lastpage,geometry,array}
\usepackage{lipsum}
\geometry{
margin = 1.5in,
headheight = 45pt % Adjust this with a change in your image size
}
\fancypagestyle{firstpagestyle}{%
\fancyhf{}% Clear header/footer
\renewcommand{\headrulewidth}{0pt}% Remove header rule
\fancyfoot[C]{% Center footer
\small
\begin{tabular}{@{} c @{}}
\rule[0.5em]{0.35\textwidth}{.4pt}
\includegraphics[height=1em]{example-image}
\rule[0.5em]{0.35\textwidth}{.4pt} \\
\bfseries Page \thepage~of \pageref{LastPage} \\
Some address in Randomville \\
who.cares.com $|$ 123-456-7890 $|$ [email protected]
\end{tabular}
}
}
\fancypagestyle{defaultpagestyle}{%
\pagestyle{firstpagestyle}% Duplicate firstpagestyle, but update the header
\fancyhead[C]{% Center header
\rule[2em]{0.3\textwidth}{.4pt}
\includegraphics[height=4em]{example-image}
\rule[2em]{0.3\textwidth}{.4pt}
}
}
% Set page style to defaultpagestyle
\pagestyle{defaultpagestyle}
\begin{document}
% Change this page to have a different page style
\thispagestyle{firstpagestyle}
\vspace*{-5\baselineskip}% Move up on the page
% Set first page "header"/title
\noindent
\begin{tabular}{@{} w{c}{\textwidth} @{}}
\includegraphics[height=4em]{example-image} \\
\scshape Some Foreign Place \\
\scshape With Interesting Stuff That Is Useful \\
\scshape And Has Knowledge To Share \\
\hline
\end{tabular}
\begin{center}
\bfseries\large
An interesting article title that is bold and impressive \\
maybe with reference to funding partners and colleagues \\
and other valuable contributors
\end{center}
\section{A section}
\lipsum[1-50]
\end{document}