.business-page h1 {
  font-size: 2rem;
  color: #333;
  animation: fade-in 0.5s ease-in;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
