#faq {
  background: #fde9e4;
  min-height: 100vh;
}
#faq > div {
  padding: 30px 0 50px;
}
#faq > div h1 {
  color: #000;
  font-size: 3rem;
  text-align: center;
  font-weight: 900;
}
.faq-wrapper {
  max-width: 820px;
  margin: 30px auto 0;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-header {
  width: 100%;
  background: #ef3b3a;
  border: none;
  border-radius: 24px 24px 24px 0;
  padding: 18px 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-header .icon {
  background: #fff;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-body {
  background: #fff;
  border-radius: 24px 24px 24px 0;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.35s ease;
  z-index: 4;
  position: relative;
  margin-top: -5px;
}

.faq-body p {
  margin: 0;
  padding: 20px 0;
  color: #000;
  font-size: 15px;
}

.faq-item.active .faq-body {
  opacity: 1;
  transform: translateY(0);
  padding: 0 22px;
}

.faq-header .icon {
  background: #fff;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-left: 15px;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg) scale(1.05);
}

@media (orientation: portrait) {
  #faq > div h1 {
    font-size: 1.5rem;
  }
}
