/** Shopify CDN: Minification failed

Line 48:15 Expected identifier but found whitespace
Line 48:17 Unexpected "{"
Line 48:26 Expected ":"
Line 67:16 Expected identifier but found whitespace
Line 67:18 Unexpected "{"
Line 67:28 Expected ":"

**/
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .faq-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
  }

  .faq-item {
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
  }

  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-icon {
    transition: transform 0.3s ease;
  }

  .faq-item.active {
    background: {{ section.settings.active_bg_color }};
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .faq-wrapper .faq-item.active{
     background: {{  section.settings.active_bg_color }};
  }
  .faq-collapsible {
    padding: var(--padding-25) 0;
}