
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.cta button {
  background-color: #1f355e;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0.5rem;
  animation: bounce 1.5s infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta button:hover {
  background-color: #314a79;
  animation: none;
}
