.article-text {
    height: auto;
     width: 100%;
}
    
    
    
.article-text p {
  font-family: 'PFBeauSans', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: #000000;
  margin: 0 0 18px 0;
}

.article-text h2 {
  font-family: 'PFBeauSans', Arial, sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #000000;
  margin: 20px 0 20px 0;
}


.faq-accordion {
  width: 100%;
  font-family: 'PFBeauSans', Arial, sans-serif;
}

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

.faq-question {
  width: 66.666%;
  margin-left: 16.666%;

  font-family: 'PFBeauSans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1F1F1F;

  padding: 30px 70px 30px 36px;

  background: #F5F5F5;
  border-radius: 20px;

  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-question::after {
  content: '+';

  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  background: #DDE86F;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 300;
  color: #1F1F1F;

  transition: 0.3s ease;
}

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

.faq-answer {
  width: 66.666%;
  margin-left: 16.666%;

  max-height: 0;
  overflow: hidden;

  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  margin-top: 8px;
  padding: 16px 36px;

  font-family: 'PFBeauSans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #1F1F1F;

  background: #FFFFFF;
  border-radius: 10px;

  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}