/* FAQ Section - Clean & Luxe Design */
.faq_wrapper {
  width: 100%;
  padding: 30px 30px 60px;
  box-sizing: border-box;
}

.faq_container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq_title {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0px;
}

.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq_item {
  background: #FFFFFF;
  border: 1px solid #C7C7C7;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.0509803922);
}

.faq_question {
  width: 100%;
  padding: 35px 45px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  color: black;
}

.faq_question_text {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.faq_icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6b7280;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq_icon_plus,
.faq_icon_minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_icon_plus {
  opacity: 1;
  transform: rotate(0deg);
  top: -10px;
}

.faq_icon_plus path {
  fill: #000000;
}

.faq_icon_minus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq_item[data-active=true] .faq_question {
  padding-bottom: 20px;
}

.faq_item[data-active=true] .faq_icon {
  transform: rotate(180deg);
}

.faq_item[data-active=true] .faq_icon_plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq_item[data-active=true] .faq_icon_minus {
  opacity: 1;
  transform: rotate(0);
  left: -15px;
  top: -8px;
}

.faq_item[data-active=true] .faq_icon_minus path {
  fill: white;
}

.faq_answer_wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.faq_item[data-active=true] .faq_answer_wrapper {
  max-height: 500px; /* Adjust based on your content */
}

.faq_answer_content {
  padding: 0 28px 5px 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq_item[data-active=true] .faq_answer_content {
  opacity: 1;
  transform: translateY(0);
}

.faq_item[data-active=true] {
	background: #1F2C4C;
}

.faq_item[data-active=true] .faq_answer_content {
	background: #1F2C4C;
}

.faq_item[data-active=true] .faq_question {
	color: white;
}

.faq_item[data-active=true] .faq_answer {
	color: white;
}

.faq_answer {
  font-family: "Clash Grotesk", sans-serif;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 30px;
  padding: 0 60px 0 17px;
  line-height: 35px;
}

.faq_answer p {
  margin: 0 0 16px 0;
}

.faq_answer p:last-child {
  margin-bottom: 0;
}

/* Media Queries - Responsive Design */
/* Tablet Large: 1200px - 800px */
@media (max-width: 1200px) and (min-width: 800px) {
  .faq_wrapper {
    padding: 60px 30px;
  }
  .faq_title {
    font-size: 36px;
  }
  .faq_question_text {
    font-size: 20px;
  }
  .faq_answer {
    font-size: 18px;
    line-height: 32px;
  }
}
/* Tablet: 799px - 500px */
@media (max-width: 799px) and (min-width: 500px) {
  .faq_wrapper {
    padding: 50px 30px;
  }
  .faq_title {
    font-size: 32px;
  }
  .faq_question {
    padding: 30px 35px;
  }
  .faq_question_text {
    font-size: 20px;
  }
  .faq_answer {
    font-size: 18px;
    line-height: 32px;
    padding-left: 8px;
  }
}
/* Mobile: max 500px */
@media (max-width: 500px) {
  .faq_wrapper {
    padding: 30px 30px;
  }
  .faq_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .faq_question {
    padding: 20px 25px;
  }
  .faq_question_text {
    font-size: 18px;
  }
  .faq_answer {
    font-size: 18px;
    line-height: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .faq_icon_plus, .faq_icon_minus {
    width: 32px;
    height: 32px;
  }
  .faq_item[data-active=true] .faq_icon_minus {
    left: -8px;
    top: 0px;
  }
}
/* Performance Optimizations */
.faq_item {
  will-change: transform, box-shadow;
}

.faq_answer_wrapper {
  will-change: max-height;
}

.faq_answer_content {
  will-change: opacity, transform;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq_item,
  .faq_question,
  .faq_icon,
  .faq_icon_plus,
  .faq_icon_minus,
  .faq_answer_wrapper,
  .faq_answer_content {
    transition: none;
  }
  .faq_item:hover {
    transform: none;
  }
}
/* Print styles */
@media print {
  .faq_wrapper {
    background: white;
    padding: 20px 0;
  }
  .faq_item {
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    page-break-inside: avoid;
  }
  .faq_answer_wrapper {
    max-height: none !important;
  }
  .faq_answer_content {
    opacity: 1 !important;
    transform: none !important;
  }
  .faq_icon {
    display: none;
  }
}/*# sourceMappingURL=faq.css.map */