/** Shopify CDN: Minification failed

Line 213:21 Expected identifier but found whitespace
Line 213:23 Unexpected "{"
Line 213:32 Expected ":"
Line 220:10 Expected identifier but found whitespace
Line 220:12 Unexpected "{"
Line 220:21 Expected ":"
Line 226:10 Expected identifier but found whitespace
Line 226:12 Unexpected "{"
Line 226:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.faq-main-container {
    background-color: white;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


  .faq-container {
      display: flex;
      justify-content: space-between;
      height: auto;
      flex-wrap: wrap;
  }

  .faq-left {
      width: 65%; /* Adjusted width */
      margin-right: 20px;
  }

  .faq-right {
      width: 30%; /* Adjusted width */
      border: 1px solid #e6e6e6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-grow: 1;
  }

  h2 {
      font-size: 28px;
      margin-bottom: 20px;
  }

  .faq-item {
      border: 1px solid #e6e6e6;
      margin-bottom: 15px;
      cursor: pointer;
  }

  .faq-question {
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .faq-question span {
      font-size: 20px;
      font-weight: bold;
      display: inline-block;
      transition: transform 0.3s ease;
      color: #FF6D3B;
  }

  .faq-item.open .faq-question span {
      transform: rotate(45deg);
  }

  .faq-question p {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      font-size: 14px;
      color: #666;
      transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 15px 15px 15px;
  }

  .faq-contact {
      padding: 20px;
      text-align: center;
  }

  .faq-contact h4 {
      font-size: 18px;
      margin-bottom: 15px;
  }

  .faq-contact p {
      font-size: 14px;
      color: #666;
      margin-bottom: 25px;
  }

   .faq-button{
      padding: 10px 20px;
      background-color: #FF6D3B;
      color: white;
      border: none;
      cursor: pointer;
  }

  button:hover {
      background-color: #e55a2f;
  }

  .faq-title {
      color: #FF6D3B;
      font-weight: bold;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
      .faq-container {
          flex-direction: column;
          align-items: stretch;
      }

      .faq-left,
      .faq-right {
          width: 100%;
          margin-right: 0;
          margin-bottom: 20px;
      }

      .faq-right {
          border: none;
          padding: 20px;
      }

      h2 {
          font-size: 24px;
      }

      .faq-question p {
          font-size: 14px;
      }

      .faq-answer {
          font-size: 12px;
      }

      .faq-contact h4 {
          font-size: 16px;
      }

      .faq-contact p {
          font-size: 12px;
      }

      button {
          padding: 8px 16px;
      }
  }

  .template-index .faq-main-container {
    background-color: white;
    box-shadow: unset;
  }

  .template-index .faq-title {
      font-size: 32px;
      line-height: 60px;
      font-family: var(--font-heading);
      font-weight: 600 !important;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
      color: black;
  }

  .template-index .faq-title:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 4px;
      background-color: #ff5c20;
  }

  .template-index .faq-main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
.heading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 20px;
    background-color: {{ section.settings.background_color }};
}


.heading-title {
    font-size: 36px;
    font-weight: 700;
    color: {{ section.settings.title_color }};
    margin-bottom: 10px;
}

.heading-subtitle {
    font-size: 20px;
    color: {{ section.settings.subtitle_color }};
    margin-top: 0;
}
/* Section wrapper */
.video-text-section {
  padding: 4rem 0;
}

/* Flex container */
.video-text-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}

/* Columns: 50% each on desktop, 100% on mobile */
.video-column,
.text-column {
  box-sizing: border-box;
  width: 50%;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .video-column,
  .text-column {
    width: 100%;
    padding: 0.5rem 1rem;
  }
}

/* Video aspect‑ratio hack */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Heading and body text */
.section-heading {
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
}