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

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

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

.MainFaq-item:last-child {
  border-bottom: none;
}

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

.MainFaq-question:focus {
  outline: none;
}

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

.MainFaq-answer p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.FaqTitle {
  font-family: '2Bold';
  font-size: 1.3rem;
  color: #2D2D2D;
  text-align: center;
  margin: 3rem auto 2rem auto;
  padding: 0 1rem;
  max-width: 750px;
  width: 100%;
  box-sizing: border-box;
}