
    .page-789wi {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
    }

    .page-789wi__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-789wi__header-floating {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      color: #fff;
      text-align: center;
      padding: 10px 0;
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-789wi__brand-keyword {
      font-size: 24px;
      font-weight: bold;
      color: #FFD700; /* Gold color */
      margin: 0;
    }

    .page-789wi__hero-section {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Decorative padding */
      box-sizing: border-box;
    }

    .page-789wi__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-789wi__hero-content {
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-789wi__hero-title {
      font-size: 48px;
      margin-bottom: 20px;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789wi__hero-description {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .page-789wi__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-789wi__cta-button {
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789wi__cta-button--primary {
      background-color: #FFD700;
      color: #333;
    }

    .page-789wi__cta-button--primary:hover {
      background-color: #e6c200;
    }

    .page-789wi__cta-button:hover {
      background-color: #0056b3;
    }

    .page-789wi__floating-buttons {
      position: fixed;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-789wi__floating-button {
      background-color: #FFD700;
      color: #333;
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789wi__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-789wi__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-789wi__section--dark {
      background-color: #222;
      color: #f8f8f8;
    }

    .page-789wi__section-title {
      font-size: 36px;
      margin-bottom: 40px;
      color: #FFD700;
    }

    .page-789wi__section-subtitle {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .page-789wi__text-content {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 17px;
      color: #666;
    }

    .page-789wi__section--dark .page-789wi__text-content {
      color: #ccc;
    }

    .page-789wi__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789wi__product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-789wi__product-card:hover {
      transform: translateY(-10px);
    }

    .page-789wi__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-789wi__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
    }

    .page-789wi__product-info {
      padding: 20px;
      flex-grow: 1;
    }

    .page-789wi__product-title {
      font-size: 22px;
      margin-top: 0;
      margin-bottom: 10px;
      color: #FFD700;
    }

    .page-789wi__product-description {
      font-size: 15px;
      color: #555;
    }

    .page-789wi__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-789wi__promotion-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-789wi__promotion-icon {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 5px;
      flex-shrink: 0;
    }

    .page-789wi__promotion-details {
      flex-grow: 1;
    }

    .page-789wi__promotion-title {
      font-size: 20px;
      color: #333;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-789wi__promotion-description {
      font-size: 15px;
      color: #666;
      margin-bottom: 10px;
    }

    .page-789wi__promotion-read-more {
      color: #007bff;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 14px;
    }

    .page-789wi__promotion-read-more:hover {
      color: #0056b3;
    }

    .page-789wi__faq-section {
      background-color: #f0f0f0;
      padding: 60px 0;
    }

    .page-789wi__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-789wi__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-789wi__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #FFD700;
      color: #333;
      font-weight: bold;
      font-size: 18px;
      transition: background-color 0.3s ease;
    }

    .page-789wi__faq-question:hover {
      background-color: #e6c200;
    }

    .page-789wi__faq-question h3 {
      margin: 0;
      font-size: 18px;
      color: #333;
      pointer-events: none;
    }

    .page-789wi__faq-toggle {
      font-size: 24px;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-789wi__faq-item.active .page-789wi__faq-toggle {
      transform: rotate(45deg);
    }

    .page-789wi__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;
      background-color: #fefefe;
      color: #555;
    }

    .page-789wi__faq-item.active .page-789wi__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-789wi__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-789wi__final-cta {
      padding: 80px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
    }

    .page-789wi__final-cta-title {
      font-size: 40px;
      margin-bottom: 20px;
      color: #FFD700;
    }

    .page-789wi__final-cta-description {
      font-size: 20px;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789wi__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-789wi__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      background-color: #fff;
      padding: 5px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-789wi__header-floating {
        justify-content: center;
      }

      .page-789wi__brand-keyword {
        font-size: 20px;
      }

      .page-789wi__hero-section {
        height: 400px;
      }

      .page-789wi__hero-title {
        font-size: 36px;
      }

      .page-789wi__hero-description {
        font-size: 16px;
      }

      .page-789wi__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-789wi__cta-button {
        padding: 12px 25px;
        font-size: 16px;
      }

      .page-789wi__floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
      }

      .page-789wi__floating-button {
        padding: 10px 18px;
        font-size: 14px;
      }

      .page-789wi__section {
        padding: 40px 0;
      }

      .page-789wi__section-title {
        font-size: 30px;
        margin-bottom: 30px;
      }

      .page-789wi__section-subtitle {
        font-size: 20px;
      }

      .page-789wi__text-content {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
      }

      .page-789wi__product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
      }

      .page-789wi__product-card {
        margin: 0 auto;
      }

      .page-789wi__product-image-wrapper {
        height: 180px;
      }

      .page-789wi__product-title {
        font-size: 20px;
      }

      .page-789wi__promotion-list {
        padding: 0 15px;
        gap: 15px;
      }

      .page-789wi__promotion-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .page-789wi__promotion-icon {
        width: 60px;
        height: 60px;
      }

      .page-789wi__promotion-title {
        font-size: 18px;
      }

      .page-789wi__promotion-description {
        font-size: 14px;
      }

      .page-789wi__faq-question {
        font-size: 16px;
        padding: 15px;
      }

      .page-789wi__faq-question h3 {
        font-size: 16px;
      }

      .page-789wi__faq-answer {
        padding: 0 10px;
      }

      .page-789wi__faq-item.active .page-789wi__faq-answer {
        padding: 15px 10px !important;
      }

      .page-789wi__final-cta-title {
        font-size: 32px;
      }

      .page-789wi__final-cta-description {
        font-size: 18px;
        padding: 0 15px;
      }

      .page-789wi__payment-providers {
        gap: 15px;
        padding: 0 15px;
      }

      .page-789wi__payment-logo {
        width: 100px;
        height: 50px;
      }

      /* List item mobile responsiveness */
      .page-789wi__promotion-item, .page-789wi__faq-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-789wi__promotion-list, .page-789wi__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-789wi__product-image,
      .page-789wi__promotion-icon {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-789wi__product-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-789wi__hero-title {
        font-size: 28px;
      }
      .page-789wi__section-title {
        font-size: 24px;
      }
      .page-789wi__final-cta-title {
        font-size: 28px;
      }
    }
  