body {
  font-family: 'Sofia';font-size: 22px;
  margin: 0;
  padding: 0;
  background-color: #FAF0E6
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
header {
  background-color: #DEB887;
  padding: 20px;
  text-align: center;
}

.language-select {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-left: auto;
}
.language-switch select {
  padding: 5px;
  background-color: #fff;
  border: none;
  font-size: 16px;
  color: #333;
}
.search-bar {
  display: flex;
  justify-content: right;
  margin: 20px 0;
}
.search-bar input {
  width: 400px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.highlight {
  background-color: yellow;
  color: black;
  font-weight: bold;
}


.welcome-section {
  display: flex;
  justify-content: space-between;
  background-color: #FFF8DC;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.welcome-text {
  flex: 3;
  text-align: center;
  margin-right: 20px;
}
.welcome-text h1 {
  margin: 0;
  font-size: 32px;
}
.welcome-text p {
  margin-top: 10px;
  font-size: 16px;
}
.welcome-image {
  flex: 1;
  background-color: #ccc;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.welcome-image img {
  max-width: 100%;
  max-height: 100%;
}
.content {
  background-color: #FFF8DC;
  padding: 20px;
  border-radius: 10px;
}
.content h2 {
  font-size: 24px;
  margin-top: 0;
}
.content p {
  font-size: 16px;
  line-height: 1.5;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 20px;
}
/* AI Chat Button */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #F0F8FF;
  color: black;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.chat-button:hover {
  background-color: #555;
}

.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.chatbot-iframe {
  display: none; /* Hidden by default */
  width: 350px;
  height: 430px;
  border: none;
}

