.vaccine-uptake {
  display: inline-block;
  font-weight: 900;
  font-size: 1.25rem;
  color: #ea6e3d; /* clean professional blue */
  animation: bounceUp 2s ease-out;
}

/* Bounce-up animation */
@keyframes bounceUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  60% {
    transform: translateY(-8px);
    opacity: 1;
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
