
      
    


      
     


      {} *{} /*endBaseStyles*/
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 body { background-color: #f9fafb; font-family: Arial, sans-serif; margin: 0; padding: 0; } .container { max-width: 600px; margin: 40px auto; padding: 20px; } .title { text-align: center; font-size: 28px; font-weight: bold; color: #111827; margin-bottom: 10px; } .description { text-align: center; font-size: 16px; color: #4b5563; margin-bottom: 30px; } .chat-container { background: #ffffff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 20px; } .chat-bubble { display: inline-block; background: #f1f5f9; color: #333; padding: 14px 18px; border-radius: 18px; margin: 10px 0; opacity: 0; transform: translateY(10px); animation: fadeInUp 0.6s forwards; } .bot { background: #e2e8f0; text-align: left; } .cta-button { display: inline-block; background: #10b981; color: #fff; padding: 14px 22px; border-radius: 8px; font-size: 18px; text-decoration: none; margin-top: 15px; transition: background 0.3s ease; text-align: center; } .cta-button:hover { background: #059669; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } 

