body {
  background-color: #f8fbfa;
  color: #3c4044;
  min-width: 1440px;
  overflow-x: auto;
}

.ls-content {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.ls-faq-item.expanded .ls-content {
  max-height: 500px;
  opacity: 1;
}

.ls-faq-item:not(.expanded) {
  height: 80px !important;
  width: 680px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.ls-faq-item.expanded {
  width: 680px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08), inset 0px 6px 0px 0px #519e8a !important;
  border: none !important;
}

.ls-faq-item:not(.expanded) h3 {
  color: rgba(0, 0, 0, 0.80);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}

@media (max-width: 1439px) {
  body { min-width: 100%; }
  .ls-faq-item:not(.expanded),
  .ls-faq-item.expanded {
    width: 100% !important;
  }
  .ls-faq-item:not(.expanded) h3 {
    font-size: 15px;
    line-height: 1.4;
  }
}

.ls-faq-arrow {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.ls-faq-item.expanded .ls-faq-arrow {
  transform: rotate(180deg);
}
