       .floating-btn {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 1000;
        }
        
        .btn-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: white;
            padding: 12px 22px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            border: 2px solid #2c3e50;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .btn-content:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
        }
        
        .partners-text {
            font-size: 0.7rem;
            color: #2c3e50;
            margin-bottom: 2px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.4s ease;
        }
        
        .btn-content:hover .partners-text {
            color: #aab7c5;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }
        
        .btn-text {
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            font-size: 1.1rem;
        }
        
        .zose {
            color: #2c3e50;
            transition: all 0.4s ease;
        }
        
        .dash {
            margin: 0 3px;
            transition: all 0.4s ease;
            font-weight: 300;
        }
        
        .pharma {
            color: #e63946;
            transition: all 0.4s ease;
        }
        
        .btn-content:hover .btn-text {
            color: white;
            letter-spacing: 0.5px;
        }
        
        .btn-content:hover .zose {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
        }
        
        .btn-content:hover .pharma {
            color: #ff9e9e;
            text-shadow: 0 0 8px rgba(230, 57, 70, 0.7);
        }
        
        .btn-content:hover .dash {
            transform: rotate(90deg) scale(1.5);
            color: #e63946;
        }