 

        /* Floating Financial Advice Button */
        .finance-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b8884, #3498db);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .finance-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
        }

        .finance-button:active {
            transform: scale(0.95);
        }

        /* Financial Advice Panel */
        .finance-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, #3b8884, #3b8884);
            color: white;
            font-size: larger;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
        }

        .finance-panel.open {
            right: 0;
        }

        .finance-panel-header {
            padding: 2rem;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .finance-panel-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .finance-panel-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
        }

           .close-button {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ff4757;
            border: none;
            color: white;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            z-index: 1002;
        }

        .close-button.show {
            display: flex;
        }

        .close-button:hover {
            background: #ff3742;
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .quote-container {
            padding: 2rem;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-text {
            font-size: 1.9rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .quote-text.active {
            opacity: 1;
            transform: translateY(0);
        }

        .quote-author {
            font-size: 1.5rem;
            font-weight: bold;
            text-align: right;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.2s;
        }

        .quote-author.active {
            opacity: 1;
            transform: translateY(0);
        }

        .quote-author::before {
            content: "— ";
        }

        .quote-indicator {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 2rem;
        }

        .indicator-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: 0.3s ease;
        }

        .indicator-dot.active {
            background: white;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .finance-panel {
                width: 100%;
                right: -100%;
            }
            
            .finance-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

             .close-button {
                top: 70%;
            }
        }
         /* Mobile phones in landscape */
        @media (max-width: 768px) and (orientation: landscape) {
            .finance-panel {
                width: 100%;
                right: -100%;
            }
            
            .finance-button {
                bottom: 15px;
                right: 15px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .close-button {
                top: 40%;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }