.faq-container {
  max-width: 1280px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  text-align:left;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  padding: 0 18px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.6;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px;
}
.faq-item.to-show {
    display: none;
}

.faq-item.visible {
    display: block;
}

#faq-btn {
    display: block;        
    float: right;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #FF2F2F;
    text-decoration: underline;
    background-color: transparent;
}


    