.bounce-arrow {
    width: 40px;
    display: block;
    margin: 20px auto;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }

  /* Add smooth scrolling */
html {
    scroll-behavior: smooth;
  }