        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #D4C8A6;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgb(159 154 139 / 30%);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background-color: #D4C8A6;
            box-shadow: 0 6px 20px rgb(159 154 139 / 40%);
            transform: translateY(-2px);
        }

        .scroll-to-top:active {
            transform: scale(0.95);
        }

        .arrow {
            width: 20px;
            height: 20px;
            border-top: 3px solid white;
            border-right: 3px solid white;
            transform: rotate(-45deg);
            margin-top: 7px;
        }

        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .arrow {
                width: 18px;
                height: 18px;
            }
        }
