/** Shopify CDN: Minification failed

Line 16:12 Expected identifier but found whitespace
Line 16:14 Unexpected "{"
Line 16:23 Expected ":"
Line 16:50 Unexpected "0"
Line 16:53 Unexpected "{"
Line 16:62 Expected ":"
Line 16:91 Expected ":"

**/


/* CSS from section stylesheet tags */
.faq-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }

.faq-title {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
  }

  .faq-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
  }

  .faq-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid #e5e5e5;
  }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #666;
  }

  .faq-question-text {
    flex: 1;
    padding-right: 20px;
  }

  .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-answer-content {
    padding: 0 0 24px 0;
    color: #666;
    line-height: 1.6;
  }

  .faq-answer-content p {
    margin: 0;
  }
.faq-title {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}
.faq-title {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
    margin-top: 0;
}

  @media screen and (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }

    .faq-question {
      font-size: 14px;
      padding: 20px 0;
    }

    .faq-answer-content {
      font-size: 14px;
    }
  }