body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    background: #fefefe;
    color: #333;
  }
  
  .side-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .side-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .side-nav ul li {
    margin: 20px 0;
  }
  
  .side-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .side-nav ul li a:hover {
    color: #ffcc00;
  }
  
  .faq-chatbot {
    padding: 80px 30px 30px 30px;
    text-align: center;
    background: #fff3e6;
  }
  
  .faq-chatbot h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #d35400;
  }
  
  .chatbox {
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .chat-bubble {
    padding: 10px 15px;
    border-radius: 20px;
    margin: 10px 0;
    max-width: 80%;
  }
  
  .user {
    background: #dfe6e9;
    text-align: left;
  }
  
  .bot {
    background: #ffeaa7;
    text-align: right;
    margin-left: auto;
  }
  
  .chat-input {
    display: flex;
    margin-top: 20px;
  }
  
  .chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 20px 0 0 20px;
    border: 1px solid #ccc;
  }
  
  .chat-input button {
    padding: 10px 20px;
    background: #ffcc00;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-weight: bold;
  }
  
  .about-section {
    background: #f6f8fa;
    padding: 60px 30px;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
  }
  
 .creators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .creator {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 220px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .creator img {
    width:100%;
    border-radius: 10px;
  }
  
  .creator h3 {
    margin-top: 10px;
    color: #2980b9;
  }
  
  .creator p {
    font-size: 0.9rem;
    color: #666;
  }
  
  .site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 25px;
  }
  
  .footer-links a {
    margin: 0 10px;
    color: #ffcc00;
    text-decoration: none;
  }
  
  .confirmation-message {
    display: none;
    margin-top: 15px;
    color: green;
    font-weight: bold;
    font-size: 1rem;
  }
  