/* Advantages grid */
  .ts-adv-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .ts-adv-item { display: flex; align-items: flex-start; gap: 12px; }
  .ts-adv-icon { flex-shrink: 0; width: 36px; height: 36px; margin-top: 2px; }
  .ts-adv-title { font-weight: 700; font-size: 15px; color: #222; margin-bottom: 6px; }
  .ts-adv-desc { font-size: 14px; line-height: 1.5; color: #555; }

  /* Product grid */
  .ts-prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
  .ts-prod-item { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; }
  .ts-prod-item img { width: 100%; max-width: 220px; height: auto; display: block; margin: 0 auto; }
  .ts-prod-body { padding: 15px 20px 20px; }
  .ts-prod-title { font-weight: 700; font-size: 16px; color: #333; margin-bottom: 8px; }
  .ts-prod-desc { font-size: 14px; line-height: 1.5; color: #555; }

  /* FAQ */
  .ts-faq-item { border-bottom: 1px solid #e5e5e5; padding: 16px 0; }
  .ts-faq-q { font-weight: 700; font-size: 15px; color: #222; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
  .ts-faq-q::after { content: "+"; font-size: 20px; color: #333; font-weight: 700; }
  .ts-faq-q.open::after { content: "−"; }
  .ts-faq-a { font-size: 14px; line-height: 1.5; color: #555; padding-top: 10px; display: none; }
  .ts-faq-a.open { display: block; }

  /* CTA block */
  .ts-cta { background: #34c924; border-radius: 8px; padding: 30px; text-align: center; color: #fff; margin-top: 40px; }
  .ts-cta-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
  .ts-cta-text { font-size: 15px; line-height: 1.5; margin-bottom: 20px; opacity: .9; }
  .ts-btn { display: inline-block; background: #fff; color: #333; font-weight: 700; font-size: 16px; padding: 12px 36px; border-radius: 6px; text-decoration: none; }
  .ts-btn:hover { background: #e8f5e6; }


  @media (max-width: 768px) {
    .ts-prod-grid { grid-template-columns: 1fr; }
  }