
    .page-t-i-88vin {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: hsl(0, 0%, 95%);
      background-color: hsl(210, 30%, 8%);
      line-height: 1.6;
      padding-bottom: 50px;
    }

    .page-t-i-88vin__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-t-i-88vin__hero-section {
      text-align: center;
      padding: 10px 0 60px;
      background-color: hsl(210, 35%, 12%);
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-t-i-88vin__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
      z-index: 1;
    }

    .page-t-i-88vin__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-t-i-88vin__hero-title {
      font-size: 3em;
      color: hsl(30, 100%, 50%); /* Orange accent */
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-t-i-88vin__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: hsl(0, 0%, 85%);
    }

    .page-t-i-88vin__button {
      display: inline-block;
      background-color: hsl(120, 70%, 40%); /* Green button */
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-t-i-88vin__button:hover {
      background-color: hsl(120, 60%, 35%);
      transform: translateY(-2px);
    }

    .page-t-i-88vin__image-wrapper {
      max-width: 100%;
      overflow: hidden;
      margin: 20px auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-t-i-88vin__image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-t-i-88vin__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: hsl(210, 35%, 12%);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-t-i-88vin__section-title {
      font-size: 2.5em;
      color: hsl(30, 100%, 50%);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-t-i-88vin__text-content {
      font-size: 1.1em;
      color: hsl(0, 0%, 85%);
      margin-bottom: 20px;
    }

    .page-t-i-88vin__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-t-i-88vin__list-item {
      background-color: hsl(210, 30%, 15%);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      font-size: 1.05em;
      color: hsl(0, 0%, 90%);
      box-sizing: border-box;
    }

    .page-t-i-88vin__list-item strong {
      color: hsl(30, 100%, 60%);
    }

    .page-t-i-88vin__step-list {
      list-style: none;
      counter-reset: step-counter;
      padding: 0;
      margin: 20px 0;
    }

    .page-t-i-88vin__step-item {
      background-color: hsl(210, 30%, 15%);
      padding: 20px 25px 20px 60px;
      margin-bottom: 15px;
      border-radius: 8px;
      position: relative;
      font-size: 1.05em;
      color: hsl(0, 0%, 90%);
      box-sizing: border-box;
    }

    .page-t-i-88vin__step-item::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      background-color: hsl(120, 70%, 40%);
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-t-i-88vin__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-t-i-88vin__product-card {
      background-color: hsl(210, 30%, 15%);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 350px; /* Limit card width */
      box-sizing: border-box;
    }

    .page-t-i-88vin__product-card:hover {
      transform: translateY(-5px);
    }

    .page-t-i-88vin__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid hsl(210, 30%, 20%);
    }

    .page-t-i-88vin__product-info {
      padding: 15px;
    }

    .page-t-i-88vin__product-title {
      font-size: 1.3em;
      color: hsl(30, 100%, 60%);
      margin-bottom: 10px;
    }

    .page-t-i-88vin__product-description {
      font-size: 0.95em;
      color: hsl(0, 0%, 80%);
    }

    .page-t-i-88vin__faq-section {
      padding: 40px 0;
      background-color: hsl(210, 35%, 12%);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-t-i-88vin__faq-item {
      background-color: hsl(210, 30%, 15%);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-t-i-88vin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: hsl(30, 100%, 50%);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-t-i-88vin__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-t-i-88vin__faq-question:hover {
      background-color: hsl(210, 30%, 20%);
    }

    .page-t-i-88vin__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-t-i-88vin__faq-item.active .page-t-i-88vin__faq-toggle {
      transform: rotate(45deg);
    }

    .page-t-i-88vin__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: hsl(0, 0%, 85%);
      font-size: 1em;
    }

    .page-t-i-88vin__faq-item.active .page-t-i-88vin__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-t-i-88vin__hero-title {
        font-size: 2.5em;
      }
      .page-t-i-88vin__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-t-i-88vin__hero-title {
        font-size: 2em;
      }
      .page-t-i-88vin__hero-description {
        font-size: 1em;
      }
      .page-t-i-88vin__section {
        padding: 30px 0;
      }
      .page-t-i-88vin__section-title {
        font-size: 1.8em;
      }
      .page-t-i-88vin__list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-t-i-88vin__list-item,
      .page-t-i-88vin__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-t-i-88vin__product-grid {
        grid-template-columns: 1fr;
      }
      .page-t-i-88vin__product-card {
        max-width: 90%;
      }
      .page-t-i-88vin__image,
      .page-t-i-88vin__product-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-t-i-88vin__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-t-i-88vin__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-t-i-88vin__faq-answer {
        padding: 0 10px;
      }
      .page-t-i-88vin__faq-item.active .page-t-i-88vin__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-t-i-88vin__hero-title {
        font-size: 1.8em;
      }
      .page-t-i-88vin__section-title {
        font-size: 1.5em;
      }
      .page-t-i-88vin__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  