#calc-result {
  display: none;
}
/* FAQ — оформление */
.faq-wrapper {
  max-width: 800px;
  margin: 60px auto;
  font-family: 'Inter', sans-serif;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  transition: 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease;
  font-size: 17px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}
