/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 70:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .faq-container {
      margin: 0 auto;
      padding: 0 20px;
    }

    .faq-section {
      margin: 40px 0;
      padding: 40px;
      background-color: #f7f7f7;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .faq-section.full-width {
      max-width: 100%;
      margin: 0;
      padding: 20px;
    }

    .faq-question {
      cursor: pointer;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: bold;
      background-color: #ffffff;
      border-bottom: 1px solid #e5e5e5;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .faq-question:hover {
      background-color: #f0f0f0;
    }

    .faq-answer {
      display: none;
      padding: 15px 20px;
      font-size: 16px;
      background-color: #ffffff;
      border-bottom: 1px solid #e5e5e5;
      transition: all 0.3s ease;
    }

    .faq-question::after {
      content: '\25BC'; /* Unicode for down arrow */
      font-size: 16px;
      transform: rotate(0deg);
      transition: transform 0.3s ease;
    }

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

    .faq-item + .faq-item {
      margin-top: 10px;
    }
  </style>