body {
  background-color: #D9D9D9;
}

.faq-heading {
  display: flex;
  justify-content: center;
  margin: 20vh 0 9vh;
}

.faq-heading-text {
  font-size: 1.1vw;
  cursor: default;
  justify-content: center;
}

.reviews-wrapper {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
}

.reviews-list {
  margin-bottom: 30px;
}

.question-item {
  border-radius: 12px;
  padding: 0.7vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.user-info {
  display: flex;
  gap: 0.6vw;
  background-color: #ffffff;
  width: 100%;
}

.avatar {
  margin-left: 1vw;
  flex-shrink: 0;
}

.avatar-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.question-content {
  display: flex;
  gap: 0.3vw;
  align-items: center;
  flex: 1;
}

.questioner-name {
  font-weight: bold;
  color: #000000;
  margin-bottom: 5px;
  font-size: 16px;
}

.question-text {
  color: #000000;
  line-height: 1.4;
  font-size: 15px;
}

.answers-section {
  width: 100%;
  height: auto;
  background-color: #EBB271;
}

.answers-toggle {
  color: #000000;
  cursor: pointer;
  font-size: 14px;
  margin: 0.5vh 1vw;
}

.answers-content {
  margin-left: 20px;
}

.answer-item {
  color: #000000;
  font-size: 14px;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 2px solid #ddd;
  width: 100%;
  background-color: #EBB271;
}

.add-question-section {
  background-color: #FFFDFA;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.input-area {
  flex: 1;
}

.review-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #696969;
  outline: none;
  font-family: inherit;
}

.review-input::placeholder {
  color: #696969;
}

.submit-btn {
  background-color: #696969;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #555;
}

/*# sourceMappingURL=faq.css.map */
