/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 82:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.faq-accordion-section {
  background-color: #0f0f0f;
  padding: 3rem 1rem;
  font-family: 'Helvetica Neue', sans-serif;
}

.faq-accordion-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq-accordion-section p.subheading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #D80000;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #2a2a2a;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #D80000;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #D80000;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  padding: 1rem;
  max-height: 500px;
}
</style>