@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      /* background-color: #fff; */
      color: #1d2e2b;
      scroll-behavior: smooth;
      scroll-margin-top: 100px;
    }

    @media (max-width: 768px) {
      * {
        scroll-margin-top: 80px;
      }
    }

    /* HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #294140;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 3rem;    /* ~48px */
  font-weight: 600;
}

h2 {
  font-size: 2.4rem;  /* ~38px */
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;  /* ~29px */
  font-weight: 500;
}

h4 {
  font-size: 1.4rem;  /* ~22px */
  font-weight: 500;
}

/* PARAGRAPHS */
p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1d2e2b;
  margin-bottom: 1rem;
}

/* OPTIONAL: links, strong, etc. */

strong {
  font-weight: 600;
}

.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}