/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
    body {
        font-family: Arial, sans-serif;
    }
    

/* Scroll to Top Button */
.go-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999;
    background-color: #f5c96a;
    color: #3e3e3e;
    border: none;
    border-radius: 50%;
    padding: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    transition: background-color 0.3s, transform 0.2s;
    animation: bounce 1.2s ease-in-out infinite;
    }
    
    .go-to-top:hover {
        background-color: #f5c96acc;
        transform: scale(1.1);
    }
    
    .go-to-top:active {
        transform: scale(0.95);
    }
    
    .go-to-top svg.icon {
        width: 24px;
        height: 24px;
    }
    
    /* Bounce animation like framer-motion */
    @keyframes bounce {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-5px);
        }
    }

  
  
  
  