/* === Figtree Font Family Setup === */
body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400; /* Regular 15pt equivalent */
  font-style: normal;
  color: #000; /* adjust body text color if needed */
}

/* === Heading Font Family === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', sans-serif;
  font-style: normal;
  margin-bottom: 0.5em;
}

/* === Individual Heading Weights and Sizes === */
h1 {
  font-weight: 900; /* Figtree Black */
  font-size: 48px;
}

h2 {
  font-weight: 700; /* Figtree Bold */
  font-size: 28px;
}

h3 {
  font-weight: 400; /* Figtree Regular */
  font-size: 28px;
}

h4 {
  font-weight: 700; /* Figtree Bold */
  font-size: 22px;
}

h5 {
  font-weight: 700; /* Figtree Bold */
  font-size: 18px;
}

h6 {
  font-weight: 600; /* optional */
  font-size: 16px;
}

/* === Body Text Elements === */
p, li, span, a, div {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

/* === Button Style: White background, blue border, black text === */
.btn-primary {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  background-color: #ffffff;
  border: 2px solid #3F2559;
  color: #000000;
  transition: all 0.2s ease-in-out;
  text-transform: none;
}