
  :root {
    --faq-accent: #E8A81A;
    --faq-text: #1F2933;
    --faq-muted: #667085;
    --faq-border: #E5E7EB;
    --faq-surface: #FFFFFF;
    --faq-page: #F7F8FA;
  }

  .faq-section,
  .faq-section * {
    box-sizing: border-box;
  }

  .faq-section {
    padding: 64px 20px 80px;
    color: var(--faq-text);
    background: var(--faq-page);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
  }

  .faq-container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq-header {
    width: 100%;
    margin: 0 0 34px;
    padding: 0;
    text-align: center !important;
  }

  .faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px !important;
    padding: 0;
    color: #8A6509;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center !important;
    text-transform: uppercase;
  }

  .faq-kicker::before {
    width: 22px;
    height: 3px;
    background: var(--faq-accent);
    content: "";
  }

  .faq-title {
    margin: 0 !important;
    padding: 0;
    color: #151A21;
    font-size: 36px;
    line-height: 1.25;
    text-align: center !important;
  }

  .article_content.editor_txt .faq-header .faq-intro,
  .faq-header .faq-intro {
    display: block;
    float: none !important;
    width: 100% !important;
    max-width: 680px;
    margin: 14px auto 0 !important;
    padding: 0 15px;
    color: var(--faq-muted);
    font-size: 16px;
    line-height: 1.65;
    text-align: center !important;
  }

  .faq-list {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .faq-item {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--faq-border);
    border-left: 3px solid transparent;
    border-radius: 6px;
    background: var(--faq-surface);
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .faq-item:hover {
    border-color: #D5D9E0;
  }

  .faq-item[open] {
    border-left-color: var(--faq-accent);
    box-shadow: 0 8px 24px rgba(31, 41, 51, 0.07);
  }

  .faq-question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 18px;
    align-items: center;
    min-height: 76px;
    margin: 0;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
  }

  .faq-question::-webkit-details-marker {
    display: none;
  }

  .faq-question::marker {
    display: none;
    content: "";
  }

  .faq-question:focus-visible {
    outline: 3px solid rgba(232, 168, 26, 0.28);
    outline-offset: -3px;
  }

  .faq-question-copy {
    display: block;
    min-width: 0;
  }

  .faq-category {
    display: block;
    margin: 0 0 4px;
    color: #9A7008;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .faq-question-text {
    display: block;
    color: #20262E;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
  }

  .faq-toggle {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    color: var(--faq-accent);
  }

  .faq-toggle::before,
  .faq-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq-item[open] .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .faq-answer {
    padding: 0 68px 24px 22px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-answer p {
    margin: 0 !important;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .faq-answer ul {
    margin: 12px 0 0;
    padding-left: 20px;
  }

  .faq-answer li {
    margin: 0;
    padding: 0;
  }

  .faq-answer li + li {
    margin-top: 7px;
  }

  .faq-answer strong {
    color: #252B33;
    font-weight: 700;
  }

  @media (max-width: 640px) {
    .faq-section {
      padding: 44px 14px 56px;
    }

    .faq-title {
      font-size: 28px;
    }

    .article_content.editor_txt .faq-header .faq-intro,
    .faq-header .faq-intro {
      max-width: 100%;
      padding: 0 8px;
      font-size: 15px;
      text-align: center !important;
    }

    .faq-question {
      min-height: 70px;
      gap: 12px;
      padding: 16px;
    }

    .faq-question-text {
      font-size: 16px;
    }

    .faq-answer {
      padding: 0 52px 20px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-toggle::before,
    .faq-toggle::after {
      transition: none;
    }
  }
