
    .th-faq-section {
      max-width: 1180px;
      margin: 70px auto;
      padding: 0 20px;
      font-family: "Poppins", "Open Sans", Arial, sans-serif;
      color: #222;
    }

    .th-faq-header {
      text-align: center;
      margin-bottom: 34px;
    }

    .th-faq-header h2 {
      margin: 0 0 12px;
      font-size: 34px;
      line-height: 1.25;
      font-weight: 500;
      color: #111;
    }

    .th-faq-header p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.8;
      color: #666;
    }

    .th-faq-list {
      border-top: 1px solid #e8e2dc;
    }

    .th-faq-item {
      border-bottom: 1px solid #e8e2dc;
    }

    .th-faq-question {
      width: 100%;
      padding: 22px 48px 22px 0;
      background: transparent;
      border: 0;
      cursor: pointer;
      text-align: left;
      position: relative;
      font-size: 17px;
      line-height: 1.45;
      font-weight: 500;
      color: #1f1f1f;
      font-family: inherit;
    }

    .th-faq-question::before,
    .th-faq-question::after {
      content: "";
      position: absolute;
      right: 8px;
      top: 50%;
      width: 16px;
      height: 2px;
      background: #222;
      transform: translateY(-50%);
      transition: transform .25s ease, opacity .25s ease;
    }

    .th-faq-question::after {
      transform: translateY(-50%) rotate(90deg);
    }

    .th-faq-question[aria-expanded="true"]::after {
      opacity: 0;
      transform: translateY(-50%) rotate(0deg);
    }

    .th-faq-answer {
      display: none;
      padding: 0 54px 24px 0;
      font-size: 15px;
      line-height: 1.85;
      color: #666;
    }

    .th-faq-answer.is-open {
      display: block;
    }

    @media (max-width: 768px) {
      .th-faq-section {
        margin: 48px auto;
      }

      .th-faq-header h2 {
        font-size: 26px;
      }

      .th-faq-question {
        font-size: 16px;
        padding-right: 40px;
      }

      .th-faq-answer {
        padding-right: 0;
      }
    }
  