.faq-item {
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        overflow: hidden;
        background: #fff;
      }

      .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        background: #f9fafb;
        border: none;
        font-size: 1.05rem;
        font-weight: 600;
        color: #111827;
        cursor: pointer;
        text-align: left;
        transition: background 0.3s, color 0.3s;
        word-break: break-word;
      }

      .faq-question > span:first-child {
        flex: 1;
        min-width: 0;
      }

      .faq-icon {
        flex-shrink: 0;
        margin-top: 0.2rem;
      }

      @media (max-width: 480px) {
        .faq-question {
          font-size: 0.9rem;
          padding: 1rem 1.1rem;
        }
        .faq-answer-inner {
          padding: 1rem 1.1rem;
          font-size: 0.9rem;
        }
      }

      .faq-question:hover {
        background: #f3f4f6;
      }

      .faq-question.active {
        background: #fff7ed;
        color: #9a3412;
      }

      .faq-question.active .faq-icon {
        transform: rotate(180deg);
        color: #9a3412;
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
      }

      .faq-question.active + .faq-answer {
        max-height: none;
      }

      .faq-answer-inner {
        padding: 1.25rem 1.5rem;
        color: #4b5563;
        line-height: 1.6;
        border-top: 1px solid #e5e7eb;
      }
