* {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.heading-highlight {
  display: inline-block;
  position: relative;
}

.heading-highlight::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #0a400c;
  border-radius: 2px;
}

/* Shared responsive CTA bar used across pages */
.cta-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #0a400c;
  color: white;
}

@media (min-width: 768px) {
  .cta-bar {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem;
  }
}

.cta-bar__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-bar__content {
    flex-direction: row;
    align-items: center;
  }
}

/* Stats row used on hero sections */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 640px) {
  .stats-row {
    gap: 2rem;
  }
}
