
    .dfx-faq-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px 15px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: #333333;
    }
    .dfx-faq-category {
      font-size: 20px;
      font-weight: 700;
      color: #111111;
      margin-top: 35px;
      margin-bottom: 18px;
      padding-bottom: 8px;
      border-bottom: 2px solid #e27d34;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .dfx-faq-category:first-of-type {
      margin-top: 0;
    }
    .dfx-faq-item {
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      margin-bottom: 12px;
      background-color: #ffffff;
      overflow: hidden;
      transition: all 0.2s ease-in-out;
    }
    .dfx-faq-item:hover {
      border-color: #d1d5db;
    }
    .dfx-faq-question {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      text-align: left;
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 600;
      color: #222222;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s ease;
    }
    .dfx-faq-question:hover {
      background-color: #fcf8f5;
    }
    .dfx-faq-icon {
      font-size: 18px;
      font-weight: 400;
      transition: transform 0.3s ease;
      margin-left: 15px;
      color: #e27d34;
      flex-shrink: 0;
    }
    .dfx-faq-item.active .dfx-faq-icon {
      transform: rotate(45deg);
    }
    .dfx-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
      padding: 0 20px;
      background-color: #ffffff;
    }
    .dfx-faq-item.active .dfx-faq-answer {
      max-height: 500px;
      transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
      padding: 0 20px 18px 20px;
    }
    .dfx-faq-answer p {
      margin: 0;
      font-size: 14.5px;
      line-height: 1.6;
      color: #555555;
    }
  