/* =========================
  Section Title
========================= */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

/* =========================
  Button
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity 0.3s, background-color 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background: #007938;
  color: #fff;
}

.btn--outline {
  border: 2px solid #007938;
  color: #007938;
  background: #fff;
}

.btn--outline:hover {
  background: rgba(0, 121, 56, 0.05);
}

/* =========================
  Card
========================= */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
