/** Shopify CDN: Minification failed

Line 46:0 Unexpected "<"
Line 142:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.faq-item {
  border-bottom: 1px solid #e2e2e2;
  padding: 15px 0;
}
.faq-question {
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
}
.faq-answer {
  display: none;
  padding-top: 10px;
  color: #666;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  content: '-';
}
<style>
  .fp-promos-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    background: #f9f7f3;
    border-radius: 24px;
    max-width: 1400px;
    margin: 0 auto;
  }

  @media (min-width: 1024px) {
    .fp-promos-container {
      flex-direction: row;
      align-items: center;
    }
  }

  .fp-promos-left {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    background-color: #ddd;
    display: flex;
    align-items: flex-end;
  }

  .fp-promos-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  .fp-promos-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    color: white;
    padding: 24px;
    width: 100%;
  }

  .fp-promos-text h2 {
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .fp-promos-text p {
    font-size: 16px;
    opacity: 0.9;
  }

  .fp-promos-right {
    flex: 2;
  }

  .swiper.fp-promos-slider {
    padding-bottom: 10px;
  }

  .swiper-slide.fp-promos-slide {
    width: 240px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    overflow: hidden;
    flex-shrink: 0;
  }

  .fp-promos-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .fp-promos-slide .info {
    padding: 14px;
  }

  .fp-promos-slide .info h3 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .fp-promos-slide .info p {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
  }
</style>