/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 69:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .faq-head {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
    justify-content: center;
  }
  .faq-item {
    width: calc(50% - 10px);
    border-radius: 5px;
    padding: 10px;
  }
  .faq-questions {
    display: none;
  }
  .faq-plus {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
  }
  .faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    background-color: #B491C8;
    color: white;
    margin-bottom: -2px;
  }
  .faq-answers {
    display: none;
    padding: 10px;
    background-color: #E5D4F4;
  }
  .faq-questions:checked + .faq-question + .faq-answers {
    display: block;
  }
  @media (max-width: 768px) {
    .faq-item {
      width: 100%;
    }
  }

.faq-wrap {
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
</style>