.onboarding-section h3 i {
  animation: bounce 1.5s infinite;
}

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

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

.button {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  opacity: 0.9;
}