
Here is what I did:
- To center the text vertically within the cell, I used the
cellspace package as Bernard did because it is the simplest. You could use any other method like \newcolumntype or \raisebox (See this question for example), but this is easy and accurate
- To make the horizontal lines thicker, I used
\setlength\arrayrulewidth{1.5pt}, besides using \arrayrulecolor{white} to make it white instead of the default black
- I picked the colors from the
css code of the page and used it to color rows and text after defining the colors in HTML by \definecolor{THIblue}{HTML}{C3CFF4} or in RGB by \definecolor{THIblue}{RGB}{195,207,244}
Finally, here is the full code
\documentclass[12pt,a4paper]{article}
\usepackage{amssymb,array,cellspace}
\usepackage[table]{xcolor}
\setlength\cellspacetoplimit{10pt}
\setlength\cellspacebottomlimit{10pt}
\definecolor{THIblue}{HTML}{C3CFF4} %{RGB}{195,207,244}
\definecolor{blueHD}{HTML}{000B6C} %{RGB}{0,11,108}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\arrayrulecolor{white}
\setlength\arrayrulewidth{1.5pt}
\begin{document}
\begin{table}[h] \sffamily
\centering
\caption{My caption}
\vspace{10pt}
\label{my-label}
\setlength\tabcolsep{20pt}
\rowcolors{2}{THIblue}{THIblue}
\begin{tabular}{L{5cm} Sc Sc}
&\color{blueHD}\textbf{Something}&\color{blueHD}\textbf{Another thing}\\
\textbf{Feature 1} & \checkmark & \checkmark \\ \hline
\textbf{Feature 2} & \checkmark & \checkmark \\ \hline
\textbf{Feature 3} & \checkmark & \checkmark \\ \hline
\textbf{Feature 4} & & \checkmark \\ \hline
\textbf{Feature 5} & & \checkmark \\ \hline
\textbf{Feature 6} & & \checkmark \\ \hline
\end{tabular}
\end{table}
\end{document}
Edit:
Using a \newcolumntype would be more beneficial if the cell content is longer than one line. To achieve this, we define \newcolumntype{B}{>{\begin{minipage}{5cm}\raggedright\vspace{10pt}}c<{\vspace{10pt}\end{minipage}}} instead of cellspace. The values 5cm and 10pt should be adjusted as needed. Take care though not to leave a cell in the first column empty. Use \phantom{Word} to get the right calculation of cell height.

\documentclass[12pt,a4paper]{article}
\usepackage{amssymb,array}
\usepackage[table]{xcolor}
\definecolor{THIblue}{HTML}{C3CFF4} %{RGB}{195,207,244}
\definecolor{blueHD}{HTML}{000B6C} %{RGB}{0,11,108}
\newcolumntype{B}{>{\begin{minipage}{5cm}\raggedright\vspace{10pt}}c<{\vspace{10pt}\end{minipage}}}
\arrayrulecolor{white}
\setlength\arrayrulewidth{1.5pt}
\begin{document}
\begin{table}[h]\sffamily
\centering
\caption{My caption}
\vspace{10pt}
\label{my-label}
\setlength\tabcolsep{20pt}
\rowcolors{2}{THIblue}{THIblue}
\begin{tabular}{Bcc}\hline
\phantom{F}&\color{blueHD}\textbf{Something}&\color{blueHD}\textbf{Another thing}\\ \hline
\textbf{Feature 1 Feature 1 Feature 1 Feature 1 Feature 1 Feature 1 Feature 1 Feature 1}
& \checkmark & \checkmark \\ \hline
\textbf{Feature 2} & \checkmark & \checkmark \\ \hline
\textbf{Feature 3} & \checkmark & \checkmark \\ \hline
\textbf{Feature 4} & & \checkmark \\ \hline
\textbf{Feature 5} & & \checkmark \\ \hline
\textbf{Feature 6} & & \checkmark \\ \hline
\end{tabular}
\end{table}
\end{document}
\arraystretchin the first place: its action is asymmetric. And howis defned yourTHIlightcolour? – Bernard Jun 21 '15 at 23:00\documentclassand ending with\end{document}. Much easier to help if you do that ;). And please don't use\bfin LaTeX documents where children might see it. It is long deprecated and acts strangely. Use\bfseriesor\textbf{}which are somewhat better behaved! – cfr Jun 21 '15 at 23:31