.breadcrumb {
  max-width: 1040px;
}
.page-container {
  max-width: 800px;
  width: 100%;
  margin: 60px auto 100px;
  padding-bottom: 60px;
  padding: 0 30px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-container {
    margin: 50px auto;
    padding: 0 15px;
  }
}
.page-container img {
  width: 100%;
}
.page-container p {
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .page-container p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-container p {
    font-size: 14px;
  }
}
.page-container h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.page-container .faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid #ffc993;
  overflow: hidden;
  height: var(--collapsed-height, 60px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-container .faq-item.open {
  height: var(--expanded-height, auto);
}
.page-container .faq-item.open .faq-question {
  background-color: #ffe2c5;
  color: #000;
}
.page-container .faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.page-container .faq-item .faq-question {
  height: 60px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  background-color: #ffefdf;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.page-container .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
.page-container .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 400;
  color: #3d3d3d;
}
@media screen and (max-width: 768px) {
  .page-container .faq-item .faq-question .question-text {
    font-size: 14px;
  }
}
.page-container .faq-item .faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: #3d3d3d;
}
.page-container .faq-item .faq-answer {
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  color: #3d3d3d;
  text-align: justify;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-container .faq-item .faq-answer {
    padding: 15px;
  }
}
