
    .page-789b-win {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-789b-win__section-title {
      font-size: 2.5em;
      color: #00f0ff;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-789b-win__section-subtitle {
      font-size: 1.2em;
      color: #c0c0c0;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Brand Header */
    .page-789b-win__brand-header {
      text-align: center;
      padding: 10px 20px 20px;
      background-color: #2c2c4a;
      border-bottom: 1px solid #00f0ff20;
    }

    .page-789b-win__brand-title {
      font-size: 2.8em;
      color: #e94560;
      margin: 0;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    }

    .page-789b-win__brand-slogan {
      font-size: 1.1em;
      color: #00f0ff;
      margin-top: 5px;
    }

    /* Hero Section */
    .page-789b-win__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Adjusting for header offset */
    }

    .page-789b-win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%;
    }

    .page-789b-win__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.9) 100%);
      z-index: 2;
    }

    .page-789b-win__hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      padding: 20px;
    }

    .page-789b-win__hero-title {
      font-size: 3em;
      color: #00f0ff;
      margin-bottom: 15px;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    }

    .page-789b-win__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-789b-win__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-789b-win__hero-button {
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .page-789b-win__hero-button--primary {
      background-color: #e94560;
      color: #ffffff;
      box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
    }

    .page-789b-win__hero-button--primary:hover {
      background-color: #ff6b8a;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
    }

    .page-789b-win__hero-button--secondary {
      background-color: transparent;
      color: #00f0ff;
      border: 2px solid #00f0ff;
      box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
    }

    .page-789b-win__hero-button--secondary:hover {
      background-color: #00f0ff;
      color: #1a1a2e;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
    }

    /* Floating Buttons */
    .page-789b-win__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(44, 44, 74, 0.9);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-789b-win__btn-register,
    .page-789b-win__btn-login {
      padding: 12px 25px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .page-789b-win__btn-register {
      background-color: #e94560;
      color: #ffffff;
      box-shadow: 0 3px 10px rgba(233, 69, 96, 0.4);
    }

    .page-789b-win__btn-register:hover {
      background-color: #ff6b8a;
      transform: translateY(-2px);
    }

    .page-789b-win__btn-login {
      background-color: #00f0ff;
      color: #1a1a2e;
      box-shadow: 0 3px 10px rgba(0, 240, 255, 0.4);
    }

    .page-789b-win__btn-login:hover {
      background-color: #33ffff;
      transform: translateY(-2px);
    }

    /* Product Showcase */
    .page-789b-win__product-showcase {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-789b-win__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789b-win__product-item {
      background-color: #2c2c4a;
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-789b-win__product-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 240, 255, 0.3);
    }

    .page-789b-win__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-789b-win__product-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-789b-win__product-description {
      font-size: 1em;
      color: #c0c0c0;
      padding: 0 15px;
    }

    /* Promotion Section */
    .page-789b-win__promotion-section {
      padding: 60px 20px;
      background-color: #22223b;
    }

    .page-789b-win__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789b-win__promotion-card {
      background-color: #2c2c4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-789b-win__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(233, 69, 96, 0.3);
    }

    .page-789b-win__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-789b-win__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789b-win__promotion-title {
      font-size: 1.6em;
      color: #00f0ff;
      margin-bottom: 10px;
    }

    .page-789b-win__promotion-description {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-789b-win__promotion-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      border: none;
      align-self: flex-start;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-789b-win__promotion-button:hover {
      background-color: #ff6b8a;
      transform: translateY(-2px);
    }

    /* Why Choose Us Section */
    .page-789b-win__why-choose-us {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-789b-win__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789b-win__advantage-item {
      background-color: #2c2c4a;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-789b-win__advantage-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 240, 255, 0.3);
    }

    .page-789b-win__advantage-icon {
      width: 250px;
      height: 187.5px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-789b-win__advantage-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-789b-win__advantage-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* Partners Section */
    .page-789b-win__partners-section {
      padding: 60px 20px;
      background-color: #22223b;
    }

    .page-789b-win__partner-group {
      margin-bottom: 50px;
    }

    .page-789b-win__partner-group:last-child {
      margin-bottom: 0;
    }

    .page-789b-win__partner-group-title {
      font-size: 2em;
      color: #00f0ff;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-789b-win__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
      align-items: center;
    }

    .page-789b-win__logo-item {
      background-color: #2c2c4a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      box-sizing: border-box;
      width: 100%;
      max-width: 200px; /* Control max width of logo item */
    }

    .page-789b-win__logo-item:hover {
      transform: translateY(-5px);
    }

    .page-789b-win__provider-logo {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      height: auto;
    }

    /* FAQ Section */
    .page-789b-win__faq-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-789b-win__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-789b-win__faq-item {
      background-color: #2c2c4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-789b-win__faq-item:hover {
      background-color: #3e3e60;
    }

    .page-789b-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #00f0ff;
      position: relative;
    }

    .page-789b-win__faq-question-text {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent text from blocking click event */
      flex-grow: 1;
    }

    .page-789b-win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e94560;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-789b-win__faq-item.active .page-789b-win__faq-toggle {
      transform: rotate(45deg);
      color: #00f0ff;
    }

    .page-789b-win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #c0c0c0;
      font-size: 1em;
    }

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

    .page-789b-win__faq-answer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-789b-win__hero-title {
        font-size: 2.5em;
      }
      .page-789b-win__hero-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-789b-win__section-title {
        font-size: 2em;
        padding-top: 30px;
      }
      .page-789b-win__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-789b-win__brand-title {
        font-size: 2.2em;
      }
      .page-789b-win__brand-slogan {
        font-size: 0.9em;
      }

      .page-789b-win__hero-section {
        height: 50vh;
      }
      .page-789b-win__hero-title {
        font-size: 2em;
      }
      .page-789b-win__hero-description {
        font-size: 0.9em;
      }
      .page-789b-win__hero-actions {
        flex-direction: column;
        gap: 10px;
      }
      .page-789b-win__hero-button {
        width: 80%;
        max-width: 250px;
        padding: 12px 20px;
      }

      .page-789b-win__floating-buttons {
        width: calc(100% - 40px);
        bottom: 15px;
        gap: 10px;
        padding: 8px 15px;
        box-sizing: border-box;
      }

      .page-789b-win__btn-register,
      .page-789b-win__btn-login {
        flex: 1;
        font-size: 0.9em;
        padding: 10px 15px;
      }

      .page-789b-win__product-showcase,
      .page-789b-win__promotion-section,
      .page-789b-win__why-choose-us,
      .page-789b-win__partners-section,
      .page-789b-win__faq-section {
        padding: 40px 15px;
      }

      .page-789b-win__product-grid,
      .page-789b-win__promotion-grid,
      .page-789b-win__advantages-grid,
      .page-789b-win__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-789b-win__product-item,
      .page-789b-win__promotion-card,
      .page-789b-win__advantage-item,
      .page-789b-win__logo-item,
      .page-789b-win__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789b-win__product-image,
      .page-789b-win__promotion-image,
      .page-789b-win__advantage-icon,
      .page-789b-win__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-789b-win__product-title,
      .page-789b-win__advantage-title,
      .page-789b-win__promotion-title {
        font-size: 1.5em;
      }

      .page-789b-win__product-description,
      .page-789b-win__advantage-description,
      .page-789b-win__promotion-description {
        font-size: 0.95em;
      }

      .page-789b-win__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-789b-win__faq-answer {
        padding: 0 20px;
      }

      .page-789b-win__faq-item.active .page-789b-win__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-789b-win__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-789b-win__hero-title {
        font-size: 1.8em;
      }
      .page-789b-win__hero-description {
        font-size: 0.85em;
      }
      .page-789b-win__hero-button {
        font-size: 1em;
        padding: 10px 15px;
      }
      .page-789b-win__brand-title {
        font-size: 1.8em;
      }
      .page-789b-win__brand-slogan {
        font-size: 0.8em;
      }
      .page-789b-win__floating-buttons {
        bottom: 10px;
        padding: 6px 10px;
      }
      .page-789b-win__btn-register,
      .page-789b-win__btn-login {
        font-size: 0.8em;
        padding: 8px 12px;
      }
    }
  