/** Shopify CDN: Minification failed

Line 149:13 Expected identifier but found whitespace
Line 149:15 Unexpected "{"
Line 149:24 Expected ":"
Line 149:59 Expected ":"
Line 156:18 Expected identifier but found whitespace
Line 156:20 Unexpected "{"
Line 156:29 Expected ":"
Line 156:62 Expected ":"
Line 157:21 Expected identifier but found whitespace
Line 157:23 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.hf-faqs-section {
    position: relative;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    overflow: hidden;
  }
  
.hf-faqs-container {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}
  
  .hf-faqs-main-heading { 
    padding-bottom: 60px;
    font-weight: 700;
    font-size: 56px;
    text-align: center;
    letter-spacing: 2px;
    margin: 0;
  }
  
  .hf-faqs-block {
    padding: 20px 25px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E0E0E0;
  }

  .hf-faqs-question {
    font-family: var(--f-body) !important;;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .hf-faqs-question-text {
    flex: 1;
  }
  
  .hf-faqs-answer {
      font-family: var(--f-body) !important;;
    font-weight: 400;
    font-size: 19px;
    line-height: 150%;
    display: none;
    margin-top: 15px;
    padding-right: 40px;
    transition: all .3s ease;
  }
  
  .hf-faqs-block.open .hf-faqs-answer {
    display: block;
  }
  
  .hf-faqs-icon {
    font-size: 24px;
    transition: transform .3s;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
  }
  
  .hf-faqs-block.open .hf-faqs-icon {
    transform: rotate(180deg);
  }
  
  .hf-faqs-button-wrapper {
    text-align: center;
    padding-top: 40px;
  }
  
  .hf-faqs-button {
    display: inline-block;
    padding: 18px 60px;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .hf-faqs-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .hf-faqs-curved-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
  }

  .hf-faqs-curved-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: auto;
  }
  .hf-faqs-section {
      
    }
  /* Desktop styles */
  @media screen and (min-width: 750px) {
    
    
    .hf-faqs-container {
      padding: 0 60px;
    }
    
    .hf-faqs-curved-bottom svg {
      height: {{ section.settings.curve_height_desktop }}px;
    }
  }

  /* Mobile styles */
  @media screen and (max-width: 768px) {
    .hf-bg {
      padding-top: {{ section.settings.mobile_padding_top }}px;
      padding-bottom: {{ section.settings.mobile_padding_bottom }}px;
    }

    .hf-faqs-container {
      padding: 0 20px;
    }
    
    .hf-faqs-main-heading {
      font-size: 38px;
      padding-bottom: 40px;
    }
    
    .hf-faqs-block {
      padding: 15px 20px;
    }
    
    .hf-faqs-question {
      font-size: 20px;
    }
    
    .hf-faqs-answer {
      font-size: 18px;
      padding-right: 30px;
    }
    
    .hf-faqs-icon {
      font-size: 20px;
    }
    
    .hf-faqs-button {
      padding: 15px 35px;
      font-size: 18px;
    }
    
    .hf-faqs-curved-bottom svg {
      height: {{ section.settings.curve_height_mobile }}px;
    }
  }