.section-wrapper {
  height: auto;
  padding-top: 175px;
}

/* FAQ Section Styles */
.faq-container {
  width: 100%;
  max-width: 426px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-item-header::-webkit-details-marker {
  display: none;
}

.faq-question {
  flex: 1;
  color: #000000;
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

.faq-icon {
  width: 16px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #444444;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  color: #000000;
  font-family: 'PP Mori', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.7px;
  padding-top: 8px;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

/* Responsive FAQ Styles */
@media screen and (max-width: 991px) {
  .faq-container {
    max-width: 100%;
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .faq-container {
    gap: 28px;
    margin-top: 32px;
  }

  .faq-question {
    font-size: 15px;
    letter-spacing: 0.75px;
  }

  .faq-answer {
    font-size: 13px;
    letter-spacing: 0.65px;
  }
}

@media screen and (max-width: 479px) {
  .faq-container {
    gap: 24px;
    margin-top: 24px;
  }

  .faq-item {
    gap: 12px;
  }

  .faq-question {
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  .faq-answer {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.footer-price {
    height: 100vh;
}