.back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px !important;
            display: flex;
            align-items: center;
            background: #8a0021;
            color: white;
            padding: 13px 23px 15px 20px;
            border-radius: 50px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(138, 0, 33, 0.0);
            z-index: 1000;
            font-weight: unset;
            font-size: 16px;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background: #8a0021;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(138, 0, 33, 0.5);
        }
        
        .icon {
            width: 20px;
            height: 20px;
            margin-right: 5px;
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover .icon {
            transform: translateY(-3px);
        }

