


/* Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #e8f0fc;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 15px;
}

.container {
  background: white;
  border-radius: 20px;
  max-width: 960px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

header {
  background: #0077cc;
  color: #fff;
  padding: 1.5em 0;
  text-align: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  margin: 0;
  color: #d4af37;
}

nav {
  margin-top: 0.5em;
}

nav a {
  text-transform: uppercase;
  font-size: 0.85em;
  color: #eee;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
}

nav a:hover {
  color: #d4af37;
}

main {
  padding: 40px 30px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #0b1c2d;
}

h1 {
  font-size: 1.8em;
}

h2 {
  margin-top: 2em;
  font-size: 1.4em;
}

p, ul {
  line-height: 1.6;
  font-size: 1.02em;
  margin-top: 1em;
}

ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  background: #0077cc;
  color: #aaa;
  padding: 20px;
}

footer .social-icons {
  margin-bottom: 15px;
}

footer .social-icons a {
  margin: 0 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

footer .social-icons a:hover {
  color: #d4af37;
}


    body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #f0f4fc;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .chatbot-container {
      background: white;
      width: 440px;
      max-width: 95%;
      padding: 25px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      overflow: auto;
      max-height: 90vh;
    }

    .chat-message {
      background: #e3efff;
      padding: 12px 16px;
      border-radius: 15px;
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(10px);
      animation: slideIn 0.5s forwards;
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .bot {
      background-color: #0077cc;
      color: white;
    }

    .chat {
      display: flex;
      flex-direction: column;
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .chat-button {
      flex: 1 1 45%;
      padding: 10px;
      border: none;
      border-radius: 10px;
      background: #f0f0f0;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.2s;
    }

    .chat-button:hover {
      background: #0077cc;
      color: white;
    }

    a {
      color: #0077cc;
      text-decoration: underline;
    }
 
