/* Importing Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Apply Poppins font to entire site */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; /* Comfortable reading size */
  line-height: 1.6;
}

/* Standardize all headings to look like H3 */
h1, h2, h3, h4, h5, h6 {
  font-size: 24px;   /* H3 size */
  font-weight: 600;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

/* Optional: Paragraph styling */
p {
  font-size: 17px;
}