body{
    background-color: rgb(232, 232, 238)

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: rgb(20, 2, 83)
  color: #333;
  line-height: 1.6;

}

header {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog article {
  background: #ecf0f1;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.blog h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.blog h3 {
  color: #34495e;
  margin-bottom: 10px;
}

.chatbot {
  background-color: #34495e;
  color: white;
  padding: 30px;
  border-radius: 10px;
}

.chatbot h2 {
  text-align: center;
  margin-bottom: 20px;
}

.chat p {
  background: #2c3e50;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.chat p.question:hover {
  background: #1abc9c;
}

.chat p.answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #16a085;
  transition: max-height 0.5s ease, padding 0.5s ease;
  margin-bottom: 10px;
}


.chat p.question:hover + p.answer {
  max-height: 100px;
  padding: 10px 15px;
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
