
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #FFF5F6;
        }
        ::-webkit-scrollbar-thumb {
            background: #E59AA5;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3D2314;
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
    