/* =============================================================
   base.css — Bondelånet
   Reset, base typography (Poppins via Google Fonts)
   ============================================================= */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Helvetica, sans-serif;
  font-weight: 400;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* --- Base Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Helvetica, sans-serif;
}
h2 {
  margin-top: 20px;
  margin-bottom: 31px;
  color: #000;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 26px;
}
a { color: #3da436; text-decoration: underline; }
a[href^="mailto:"], a[href^="tel:"] { text-decoration: none; }
ul { margin: 0 0 10px; padding-left: 40px; }
li { font-size: 15px; line-height: 26px; }
img { max-width: 100%; display: block; }
