/* FAQ Section Styles */
.faq-section {
    width: 100%;
    max-width: calc(100% - 100px);
    margin: 0 auto;
    padding: 20px 20px 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
.menu-toggle.faq{
  display: block !important;
}
  .faq-container {
    display: flex;
    gap: 20px;
    border-radius: 9px;
    margin: 30px auto;
    min-height: 600px;
  }
  
  /* Left Menu Panel (1/3) */
  .faq-menu-panel {
    flex: 0 0 33.333%;
    background: white !important;
    display: flex;
    border-radius: 9px;
    box-shadow: 0px 4px 10px 0px #00000033;

    flex-direction: column;
  }
  
  .faq-menu-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: 0;
    border-bottom: 3px solid black;
    display: inline-flex;
    padding: 10px 0px;
    width: 20%;

  }
  
  .faq-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
  
  .faq-menu-content {
    flex: 1;
    border-radius: 9px;
    overflow-y: auto;
    padding: 0;
  }
  
  .faq-menu-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    justify-content: space-between;
  }
  
  /*.faq-menu-item {*/
  /*  border-bottom: 1px solid #e9ecef;*/
  /*}*/
  
  .faq-menu-item.level-0 > .faq-menu-title {
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;       /* 14px ÷ 16 = 0.875rem */
    line-height: 0.63875rem;   /* 10.22px ÷ 16 ≈ 0.63875rem */
    letter-spacing: 0;

  }
  
  .faq-menu-item.level-0 > .faq-menu-title:hover {
    background: #f8f9fa;
    color: #ff6b35;
  }
  
  .faq-menu-item.level-0.active > .faq-menu-title {
    background: #ff6b35;
    color: #fff;
  }
  
  .faq-menu-item.level-0.active .menu-toggle i {
    transform: rotate(45deg);
    color: #fff;
  }
  
  .menu-toggle {
    transition: transform 0.3s ease;
  }
  
  .menu-toggle i {
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
  }
  
  .faq-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    display: none;
  }
  
  .faq-submenu-list.expanded {
    display: block;
  }
  
  .faq-menu-item.level-1 {
    padding: 15px;
    cursor: pointer;
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.817rem;       /* 13.07px ÷ 16 ≈ 0.817rem */
    line-height: 0.63875rem;   /* 10.22px ÷ 16 ≈ 0.63875rem */
    letter-spacing: 0;

    transition: all 0.3s ease;
  }
  
  .faq-menu-item.level-1:hover {
    background: #e9ecef;
    color: #ff6b35;
  }
  
  .faq-menu-item.level-1.active {
    background: #ff6b35;
    color: #fff;
    font-weight: 500;
  }
  
  .faq-menu-item.level-1:last-child {
    border-bottom: none;
  }
  
  /* Right Content Panel (2/3) */
  .faq-content-panel {
    flex: 0 0 66.666%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 9px;
    box-shadow: 0px 4px 10px 0px #00000033;
  }
  
  .faq-content-header {
    padding: 30px 30px 15px;    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-main-title {
    margin: 0;

    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;        /* 24px ÷ 16 = 1.5rem */
    line-height: 1;           /* 100% = 1 */
    letter-spacing: 0;

  }
  
  .faq-search-container {
    position: relative;
    width: 300px;
  }
  
  .faq-search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .faq-search-input:focus {
    border-color: #ff6b35;
  }
  
  .faq-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
  }
  
  .faq-content-body {
    flex: 1;
    padding: 0px 30px 30px;
    overflow-y: auto;
    max-height: calc(600px - 80px);
  }
  .support-content{
    margin: 30px auto;
  }
  .faq-category-title h3 {
    color: #ff6b35;
padding: 10px 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;     /* 24px ÷ 16 = 1.5rem */
    line-height: 1;        /* 100% = 1 */
    letter-spacing: 0;

  }
  
  .faq-items-container {
    min-height: 200px;
  }
  
  .faq-item {
    margin-bottom: 25px;
    padding: 20px 0px 0px;
    transition: all 0.3s ease;
    border-top: 1px solid #C5C5C5;
  }
  
  /*.faq-item:hover {*/
  /*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  /*}*/
  
  .faq-item.featured {
    background: #fff5f2;
    border-left-color: #ff4500;
  }
  
  .faq-item-question {
    margin: 0 0 15px 0;

    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;   /* 15px ÷ 16 = 0.9375rem */
    line-height: 1.5;       /* 150% = 1.5 */
    letter-spacing: 0;

  }
  
  .faq-item-answer {
    margin: 0;
    color: #666;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;    /* 15px ÷ 16 = 0.9375rem */
    line-height: 1.5;        /* 150% = 1.5 */
    letter-spacing: 0;

  }
  
  .faq-item-answer p {
    margin-bottom: 10px;
  }
  
  .faq-item-answer p:last-child {
    margin-bottom: 0;
  }
  
  .faq-item-answer ul,
  .faq-item-answer ol {
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .faq-item-answer li {
    margin-bottom: 5px;
  }
  
  /* Placeholder and Loading States */
  .faq-placeholder,
  .faq-loading,
  .faq-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
  }
  
  .faq-placeholder-icon,
  .no-results-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  .faq-placeholder p,
  .faq-no-results p {
    font-size: 16px;
    margin: 0;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
      min-height: auto;
    }
  
    .faq-menu-panel,
    .faq-content-panel {
      flex: none;
    }
  
    .faq-content-body {
      max-height: none;
    }
  
    .faq-content-header {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
    }
  
    .faq-search-container {
      width: 100%;
    }
  
    .faq-main-title {
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .faq-section {
      padding: 10px;
    }
  
    .faq-container {
      gap: 0;
    }
  
    .faq-menu-header,
    .faq-content-header,
    .faq-content-body {
      padding: 15px;
    }
  
    .faq-item {
      padding: 15px;
      margin-bottom: 15px;
    }
  
    .faq-item-question {
      font-size: 15px;
    }
  
    .faq-item-answer {
      font-size: 13px;
    }
  }
  
  /* Scrollbar Styling */
  .faq-menu-content::-webkit-scrollbar,
  .faq-content-body::-webkit-scrollbar {
    width: 6px;
  }
  
  .faq-menu-content::-webkit-scrollbar-track,
  .faq-content-body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .faq-menu-content::-webkit-scrollbar-thumb,
  .faq-content-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
  }
  
  .faq-menu-content::-webkit-scrollbar-thumb:hover,
  .faq-content-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  