body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #F9FAFB;
  color: #333333;
}

.card {
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #35B498;
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #079455;
}