/* === Base, Reset, Variables, Typography === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');
:root {
    --preformia-dark-blue: #003366;
    --preformia-light-blue: #66CCFF;
    --preformia-text-dark: #333333;
    --preformia-bg-light: #F5F5F5;
    --preformia-white: #FFFFFF;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
*, *:before, *:after { box-sizing: border-box; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--preformia-text-dark);
    background: var(--preformia-bg-light);
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--preformia-dark-blue);
}
a { text-decoration: none !important; } 