/* FAQ Section */
#fh5co-faq {
    font-family: 'Poppins', sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  
  /* FAQ Menu */
  #fh5co-faq .faq-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  #fh5co-faq .faq-menu-button {
    background: var(--skribi-orange);
    color: #fff;
    padding: 15px 30px;
    border-radius: var(--skribi-btn-radius);
    border: 2px solid var(--skribi-orange);
  font-size: var(--fs-body);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  #fh5co-faq .faq-menu-button:hover,
  #fh5co-faq .faq-menu-button.active {
    background: var(--skribi-orange-strong);
    transform: scale(1.02);
  }
  
  /* FAQ Content */
  #fh5co-faq .faq-content {
    max-width: 800px;
    margin: 0 auto;
    
  }
  
  #fh5co-faq .faq-section {
    display: none;
    background-color: white;
    border-bottom-left-radius: 6rem;
      border-bottom-right-radius: 0px;
      border-top-left-radius: 0px;
      border-top-right-radius: 6rem;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
  }
  
  #fh5co-faq .faq-section h3 {
    font-size: var(--fs-h3);
    color: #044f5b;
    margin-bottom: 20px;
  }
  
  #fh5co-faq .faq-section p {
    font-size: var(--fs-dense);
    color: #542e2a;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  
  @media (max-width: 1200px) {
    /* FAQ Section */
    #fh5co-faq .faq-menu-button {
      font-size: 1.2rem;
      padding: 10px 20px;
    }
    #fh5co-faq .faq-section {
      padding: 20px;
    }
    #fh5co-faq .faq-section h3 {
      font-size: 2rem;
    }
    #fh5co-faq .faq-section p {
      font-size: 1.5rem;
    }
  }


  @media (max-width: 840px) {
    /* FAQ Section */
    #fh5co-faq .faq-menu {
      flex-direction: column;
      gap: 10px;
    }
    #fh5co-faq .faq-menu-button {
      font-size: 2rem;
      padding: 8px 16px;
    }
    #fh5co-faq .faq-section {
      padding: 15px;
    }
    #fh5co-faq .faq-section h3 {
      font-size: 3rem;
    }
    #fh5co-faq .faq-section p {
      font-size: 2rem;
    }
  }




  @media (max-width: 631px) {
    /* FAQ Section */
    #fh5co-faq .faq-section h3 {
      font-size: 2.5rem;
    }
    #fh5co-faq .faq-section p {
      font-size: 2rem;
    }
    #fh5co-faq .faq-menu-button {
      font-size: 1.75rem;
      padding: 8px 16px;
    }
  
    #fh5co-faq .faq-menu-button:hover,
    #fh5co-faq .faq-menu-button.active {
    background:  #e75623;
    transform: scale(1);
  }
  }