/* === Reset / box model === */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Font setup === */
@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand-v37-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand-v37-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* === Base typography === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
  background-color: #fff;
}

/* === Text elements === */
p {
  margin: 0 0 1em 0;
}

ul {
  margin: 0 0 1em 0;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.4em;
}

/* === Links === */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Utility === */
.no-tel {
  white-space: nowrap;
}