.MainFaq {
  width: 100%;
  max-width: 750px;
  margin: 2rem auto;
  background-color: #E1DDD5;
  border: none;
  border-radius: 4px;
  overflow: hidden;
}

.MainFaq-item {
  border-bottom: 1px solid #333333;
}

.MainFaq-item:first-child {
  border-top: 1px solid #333333;
}

.MainFaq-item:last-child {
  border-bottom: 1px solid #333333;
}

.MainFaq-question {
  padding: 1rem;
  margin: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: '2Regular';
  font-size: 1rem;
  color: #333333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.MainFaq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: '2Regular';
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

.MainFaq-item.active .MainFaq-answer {
  padding: 0 1rem 1rem;
  max-height: 500px;
}