
    .th-category-section {
      max-width: 1180px;
      margin: 70px auto;
      padding: 0 20px;
      font-family: "Poppins", "Open Sans", Arial, sans-serif;
      color: #222;
    }

    .th-category-intro {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: stretch;
      margin-bottom: 46px;
    }

    .th-category-copy,
    .th-category-points,
    .th-category-faq {
      border: 1px solid #eee2d7;
      background: #fff;
      border-radius: 8px;
    }

    .th-category-copy {
      padding: 34px;
      position: relative;
      overflow: hidden;
    }

    .th-category-copy:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: #F4CBA3;
    }

    .th-category-eyebrow {
      display: inline-block;
      margin-bottom: 12px;
      padding: 6px 12px;
      background: rgba(244, 203, 163, .25);
      color: #7b4d25;
      font-size: 12px;
      line-height: 1;
      letter-spacing: .04em;
      text-transform: uppercase;
      border-radius: 999px;
      font-weight: 500;
    }

    .th-category-section h2 {
      margin: 0 0 18px;
      font-size: 32px;
      line-height: 1.25;
      font-weight: 500;
      color: #111;
    }

    .th-category-section p {
      margin: 0 0 16px;
      font-size: 15px;
      line-height: 1.85;
      color: #666;
    }

    .th-category-section p:last-child {
      margin-bottom: 0;
    }

    .th-category-points {
      padding: 30px;
      background: linear-gradient(180deg, rgba(244, 203, 163, .18), rgba(255, 255, 255, 1));
    }

    .th-category-points h3 {
      margin: 0 0 20px;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 500;
      color: #111;
    }

    .th-category-points ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .th-category-points li {
      position: relative;
      margin-bottom: 16px;
      padding-left: 28px;
      font-size: 15px;
      line-height: 1.65;
      color: #555;
    }

    .th-category-points li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 12px;
      height: 12px;
      background: #F4CBA3;
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(244, 203, 163, .25);
    }

    .th-category-faq {
      padding: 34px;
    }

    .th-category-faq-title {
      text-align: center;
      margin-bottom: 28px;
    }

    .th-category-faq-title h2 {
      margin-bottom: 10px;
    }

    .th-category-faq-title p {
      max-width: 680px;
      margin: 0 auto;
    }

    .th-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .th-faq-item {
      padding: 22px;
      border: 1px solid #eee2d7;
      border-radius: 8px;
      background: #fffaf6;
    }

    .th-faq-item h3 {
      margin: 0 0 10px;
      font-size: 17px;
      line-height: 1.45;
      font-weight: 500;
      color: #111;
    }

    .th-faq-item p {
      font-size: 14px;
      line-height: 1.75;
    }

    @media (max-width: 900px) {
      .th-category-intro,
      .th-faq-grid {
        grid-template-columns: 1fr;
      }

      .th-category-section {
        margin: 48px auto;
      }

      .th-category-copy,
      .th-category-points,
      .th-category-faq {
        padding: 24px;
      }

      .th-category-section h2 {
        font-size: 26px;
      }
    }
  