    .faq-section {
      max-width: 900px;
      margin: auto;
      text-align: center;
    }

    .faq-title {
      font-size: 34px;
      font-weight: 700;
      color: #0d2340;
      margin-bottom: 30px;
    }

    /* Tabs */
    .faq-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 30px;
    }

    .faq-tab {
      padding: 12px 22px;
      border: 1px solid #ddd;
      border-radius: 30px;
      background: #fff;
      color: #0d2340;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .faq-tab.active {
      background: #ff4b4b;
      color: #fff;
      border-color: #ff4b4b;
    }

    .faq-tab:hover {
      background: #ff4b4b;
      color: #fff;
    }

    /* Accordion */
    .faq-category {
      display: none;
    }

    .faq-category.active {
      display: block;
    }

    .faq-item {
      background: #fff;
      margin-bottom: 14px;
      border-radius: 10px;
      border: 1px solid #ddd;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: left;
    }

    .faq-question {
      width: 100%;
      padding: 18px 22px;
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
      background: #fff;
      border: none;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-question::after {
      content: "▼";
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px;
      background: #fafafa;
      color: #555;
      line-height: 1.6;
      transition: all 0.3s ease;
    }
    .faq-answer p{
      color: var(--text-color);
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 15px 22px 20px;
    }

    @media(max-width: 768px) {
      .faq-title {
        font-size: 28px;
      }

      .faq-question {
        font-size: 16px;
      }

      .faq-tab {
        font-size: 14px;
        padding: 10px 18px;
      }
    }