.tt-blog-faq-section{
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 20px
}
  .faq-section {
      padding: 60px 20px;
  }

  .faq-container {
      max-width: 900px;
      margin: 0 auto;
  }

  .faq-header {
      text-align: center;
      margin-bottom: 28px;
  }

  .faq-header .faq-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      color: #4f46e5;
      background: rgba(79, 70, 229, 0.08);
      padding: 8px 14px;
      border-radius: 999px;
      margin-bottom: 14px;
  }

  .faq-header h2 {
      margin: 0;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.5px;
  }

  .faq-header p {
      margin: 14px auto 0;
      max-width: 680px;
      font-size: 16px;
      line-height: 1.7;
      color: #475569;
  }

  .faq-list {
      display: grid;
      gap: 15px;
  }

  .faq-item {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
      transition: all 0.3s ease;
  }

  .faq-item:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 40px rgba(15, 23, 42, 0.09);
  }

  .faq-item.active {
      border-color: rgba(79, 70, 229, 0.22);
      box-shadow: 0 16px 44px rgba(79, 70, 229, 0.10);
  }

  .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      cursor: pointer;
  }

  .faq-question-text {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
      min-width: 0;
  }

  .faq-number {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(134deg, #f30720 11%, #f30720 35%, #fd2e2e 55%);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
  }

  .faq-question strong {
      display: block;
      color: #0f172a;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 600;
  }

  .faq-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f1f5f9;
      color: #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .faq-item.active .faq-icon {
      background: linear-gradient(134deg, #f30720 11%, #f30720 35%, #fd2e2e 55%);
      color: #fff;
      transform: rotate(180deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
  }

  .faq-answer-content {
      padding: 0 24px 24px 24px;
  }

  .faq-answer-content p {
      margin: 0;
      padding-left: 48px;
      color: #475569;
      font-size: 13px;
      line-height: 1.8;
  }

  @media (max-width: 768px) {
      .faq-section {
          padding: 40px 16px;
      }

      .faq-header h2 {
          font-size: 27px;
      }

      .faq-header p {
          font-size: 15px;
      }

      .faq-question {
          padding: 18px 18px;
      }

      .faq-question strong {
          font-size: 15px;
      }

      .faq-number {
          width: 30px;
          height: 30px;
          font-size: 12px;
          border-radius: 9px;
      }

      .faq-icon {
          width: 34px;
          height: 34px;
          font-size: 20px;
      }

      .faq-answer-content {
          padding: 0 18px 18px 18px;
      }

      .faq-answer-content p {
          padding-left: 44px;
          font-size: 14px;
      }
  }