 body {
      font-family: 'Outfit', sans-serif;
      background-color: #121212;
      color: #e0e0e0;
    }
    .category-panel {
  display: none;
}

.category-panel.active {
  display: block;
}

    .tz-bg-neutral3 {
      background-color: #121212;
    }

    .tz-text-neutral5,
    .tz-text-neutral6,
    .tz-text-l,
    .tz-breadcrumb__title,
    .tz-breadcrumb__list a,
    .section-title {
      color: #e0e0e0;
    }

    .tz-breadcrumb {
      background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
      color: white;
    }

    .tz-breadcrumb__overlay {
      display: none;
    }

    /* FAQ Section */
    .faq-section {
      padding: 60px 0;
    }

    .section-title {
      font-family: 'Teko', sans-serif;
      font-size: 2.8rem;
      font-weight: 600;
      color: #91d904;
      text-align: center;
      margin-bottom: 20px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .faq-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px;
      color: #aaa;
      font-size: 16px;
    }

    /* Search Bar */
    .faq-search {
      text-align: center;
      margin-bottom: 20px;
    }

    .faq-search input {
      max-width: 500px;
      width: 100%;
      padding: 12px 20px;
      border: 2px solid #333;
      border-radius: 12px;
      background: #1e1e1e;
      color: #fff;
      font-size: 16px;
      outline: none;
    }

    .faq-search input:focus {
      border-color: #91d904;
    }

    /* Tabs */
    .faq-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 0 auto 30px;
      max-width: 1200px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
      display: none;
    }

    .faq-tabs button {
      flex-shrink: 0;
      padding: 12px 24px;
      background: #222;
      border: none;
      color: #ddd;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-tabs button.active {
      background: #91d904;
      color: #000;
    }

    /* FAQ Container */
    .faq-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* FAQ Content Wrapper */
    .faq-content-wrapper {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    /* Scrollable FAQ Content */
    .faq-scrollable-content {
      flex: 1;
      min-width: 300px;
      max-height: 70vh;
      overflow-y: auto;
      background: #1e1e1e;
      border-radius: 12px;
      padding: 20px;
      border: 1px solid #333;
    }

    .faq-scrollable-content::-webkit-scrollbar {
      width: 8px;
    }

    .faq-scrollable-content::-webkit-scrollbar-thumb {
      background: #444;
      border-radius: 4px;
    }

    /* FAQ Item */
    .faq-item {
      margin-bottom: 16px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      background: #252525;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 16px 20px;
      background: #333;
      border: none;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #444;
    }

    .faq-question .icon {
      width: 20px;
      height: 20px;
      stroke: #91d904;
      stroke-width: 2.5;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question .icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 20px;
      color: #bbb;
      line-height: 1.7;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s ease;
    }

    .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 800px;
      opacity: 1;
    }

    /* Right Side Image Section */
    .faq-image-section {
      flex: 0 0 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .faq-image-section img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .faq-image-section {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }

      .faq-question {
        font-size: 17px;
        padding: 14px;
      }

      .faq-answer {
        font-size: 15px;
      }
    }
    /* Breadcrumb Banner Section */
    .tz-breadcrumb {
      position: relative;
      background-image: url('../images/breadcrumb/FAQ.jpg');
      background-size: cover;
      padding: 162px 0 154px;
      text-align: center;
      z-index: 1;
    }

    .tz-breadcrumb::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
background: linear-gradient(135deg, rgb(0 0 0 / 12%), rgba(10, 25, 47, 0.7));      z-index: -1;
    }