.faq-container {
  max-width: 80%;
  margin: 20px 5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ececec;
}

/* The Clickable Question */
.faq-question {
  /*width: 100%; */
  padding: 10px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

/* Indicator (Plus sign) */
.faq-question::after {
  content: '\002B'; /* Plus sign */
  font-size: 1.5rem;
  transition: transform 0.3s;
  margin-left:10px;
}

.faq-question.active::after {
  transform: rotate(45deg); /* Turns plus into an 'x' or use '\2212' for minus */
}

/* The Hidden Answer Wrapper */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  text-align:left;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
}

.faq-content {
  padding: 0 10px 10px 10px;
  color: #666;
  line-height: 1;
}