.lmn-faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

#faq-search {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.2rem;
  font-family: 'Lato', sans-serif;
  border: 2px solid #bfa14c;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.lmn-faq-chat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question,
.faq-answer {
  max-width: 70%;
  padding: 1rem;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.faq-question {
  align-self: flex-start;
  background-color: #f7f7f7;
  color: #000;
}

.faq-answer {
  align-self: flex-end;
  background: #fff;
  color: #000;
  border: 2px solid #bfa14c;
  border-radius: 12px;
  position: relative;
  max-width: 70%;
  padding: 1rem;
overflow: hidden;
}



.faq-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.faq-more-btn .circle {
  width: 80px;
  height: 80px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  transition: background 0.3s ease;
}

.faq-more-btn .circle:hover {
  background: #ccc;
}

.faq-more-btn .label {
  margin-top: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #000;
}
