.faq-accordion {
  width: 100%;
  padding-bottom: 60px;
}

.faq-accordion.faq-box {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.faq-accordion .box-title {
  position: relative;
  width: fit-content;
  margin: 60px auto 30px;
  text-align: center;
}

.faq-accordion .title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  color: #333;
  font-size: 25px;
  font-weight: 700;
  line-height: 36px;
}

.faq-accordion .title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ef3e44;
}

.faq-accordion .box-faq {
  margin-top: 30px;
}

.faq-accordion .accordion {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px 18px;
  border: none;
  border-radius: 13px;
  background: #fff;
  color: inherit;
  cursor: pointer;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.06));
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-accordion .accordion:hover,
.faq-accordion .accordion.active {
  background-color: #f7f7f7;
}

.faq-accordion .accordion.active {
  border-left: 3px solid #ef3e44;
}

.faq-accordion .accordion:focus-visible {
  outline: 3px solid #2c3f83;
  outline-offset: 3px;
}

.faq-accordion .accordion::after {
  content: "";
  display: inline-block;
  float: left;
  width: 1em;
  height: 1em;
  margin-left: 5px;
  color: #777;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 448 512%22%3E%3Cpath d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 448 512%22%3E%3Cpath d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.faq-accordion .accordion.active::after {
  color: #ef3e44;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 448 512%22%3E%3Cpath d='M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 173.3 86.6 310.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 448 512%22%3E%3Cpath d='M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 173.3 86.6 310.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z'/%3E%3C/svg%3E");
}

.faq-accordion .panelfaq {
  max-height: 0;
  margin-bottom: 10px;
  padding: 0 18px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 13px 13px;
  transition: max-height 0.3s ease-out;
}

.faq-accordion .panelfaq p {
  margin: 0;
  padding: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 465px) {
  .faq-accordion {
    padding-bottom: 30px;
  }

  .faq-accordion .box-title {
    margin: 30px auto 15px;
  }

  .faq-accordion .title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }

  .faq-accordion .box-faq {
    margin-top: 20px;
  }

  .faq-accordion .accordion {
    padding: 15px;
    font-size: 13px;
  }

  .faq-accordion .panelfaq p {
    font-size: 12px;
    line-height: 1.6;
  }
}
