   .chatbot-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            font-family: 'Outfit', sans-serif;
            z-index: 8000;
        }

        /* Floating Button */
        #chatbot-button {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #fcd34d;
            color: #1e3a5f;
            border: none;
            cursor: pointer;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        #chatbot-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(252, 211, 77, 0.4);
        }

        #chatbot-button:active {
            transform: scale(0.95);
        }

        /* Chat Window */
        #chatbot-window {
            position: absolute;
            bottom: 100px;
            right: 0;
            width: 420px;
            height: 600px;
            background: white;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        #chatbot-window.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        /* Chat Header */
        .chatbot-header {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
            color: white;
            padding: 25px;
            border-radius: 25px 25px 0 0;
            text-align: center;
        }

        .chatbot-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 800;
            font-family: 'Fredoka', cursive;
        }

        .chatbot-header p {
            margin: 8px 0 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        /* Messages Container */
        #chatbot-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        #chatbot-messages::-webkit-scrollbar {
            width: 6px;
        }

        #chatbot-messages::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 10px;
        }

        #chatbot-messages::-webkit-scrollbar-thumb {
            background: #fcd34d;
            border-radius: 10px;
        }

        /* Messages */
        .chatbot-message {
            padding: 12px 16px;
            border-radius: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 85%;
            word-wrap: break-word;
        }

        .user-message {
            align-self: flex-end;
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
            color: white;
            border-radius: 15px 5px 15px 15px;
        }

        .bot-message {
            align-self: flex-start;
            background: white;
            color: #1e3a5f;
            border: 2px solid #fcd34d;
            border-radius: 5px 15px 15px 15px;
        }

        .bot-message ul {
            margin: 10px 0 !important;
            padding-left: 20px !important;
        }

        .bot-message li {
            margin: 5px 0;
        }

        /* Input Container */
        .chatbot-input-container {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
            border-radius: 0 0 25px 25px;
        }

        #chatbot-input {
            flex: 1;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 12px 18px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
            background: #f8fafc;
        }

        #chatbot-input:focus {
            outline: none;
            border-color: #fcd34d;
            background: white;
            box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.1);
        }

        #chatbot-input::placeholder {
            color: #94a3b8;
        }

        .chatbot-send-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #fcd34d;
            color: #1e3a5f;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 800;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .chatbot-send-btn:hover {
            background: #f59e0b;
            transform: scale(1.05);
        }

        .chatbot-send-btn:active {
            transform: scale(0.95);
        }

        /* Welcome Message */
        .chatbot-welcome {
            text-align: center;
            color: #64748b;
            padding: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Loading Animation */
        .loading-dots {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .loading-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fcd34d;
            animation: bounce 1.4s infinite;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loading-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 80%, 100% {
                opacity: 0.5;
                transform: translateY(0);
            }
            40% {
                opacity: 1;
                transform: translateY(-10px);
            }
        }

        /* Error Message */
        .error-message {
            background: #fee2e2 !important;
            color: #991b1b !important;
            border-color: #fca5a5 !important;
        }

        .error-message strong {
            color: #dc2626;
        }

        .error-message a {
            color: #991b1b;
            text-decoration: underline;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .chatbot-container {
                bottom: 20px;
                right: 20px;
            }

            #chatbot-button {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            #chatbot-window {
                width: calc(100vw - 40px);
                height: 70vh;
                max-height: 500px;
                bottom: 90px;
            }

            .chatbot-message {
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            #chatbot-button {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            #chatbot-window {
                width: calc(100vw - 20px);
                bottom: 80px;
            }

            .chatbot-header h3 {
                font-size: 1.1rem;
            }
        }
