.faq-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: inherit;
  box-sizing: border-box;
}


.faq-section .faq-container {
  max-width: 740px;
  margin: 0 auto;
 display: flex;
  flex-direction: column;
  align-items: center;
}


.faq-section .faq-section-heading {
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 22px 0;
}



.faq-section .faq-section-desc {
  color: #000000;
  text-align: center;
  margin: 0 0 22px 0;
 line-height: 24px;
}

.faq-section .faq-section-desc p {
  margin: 0;
}



.faq-section .faq-list {
  width: 100%;
 display: flex;
  flex-direction: column;
 gap: 10px;
}


.faq-section .faq-item {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
 overflow: hidden;
  box-sizing: border-box;
 transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Open FAQ */

.faq-section .faq-item.is-open {
  border-color: #cbd5e1;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04);
}



.faq-section .faq-content-wrapper {
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
}


.faq-section .faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
 text-align: left;
 cursor: pointer;
 gap: 16px;
 box-sizing: border-box;
}

.faq-section .faq-question-text {
  font-weight: 400;
  color: #000000;
 line-height: 24px;
 margin: 0;
  padding: 0;
}




.faq-section .faq-icon-wrap {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
 border-radius: 50%;
 background-color: #E40004;
 color: #ffffff;
 display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s
    cubic-bezier(0.4, 0, 0.2, 1);
}


/* Rotate Icon */

.faq-section .faq-item.is-open .faq-icon-wrap {
  transform: rotate(360deg);
}

.faq-section .faq-vertical-line {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
 transform-origin: center;
}


.faq-section .faq-item.is-open .faq-vertical-line {
  transform: scaleY(0);
  opacity: 0;
}


.faq-section .faq-answer-panel {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  transition:
    height 0.5s
    cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-section .faq-answer-content {
  padding: 0;
  margin: 0;
 color: #000000;
 line-height: 20px;
 font-size: 14px;
}



.faq-section .faq-answer-content p {
  margin: 0;
  padding: 0;
}


/
@media (min-width: 768px) {

  .faq-section {
    padding: 80px 32px;
  }

  .faq-section .faq-section-heading {
    font-size: 30px;
  }

}


@media (max-width: 767px) {

 
  .faq-section .faq-content-wrapper {
    padding: 18px;
  }

}