
    /* Global styles for the page-789win content, ensuring contrast and mobile-first design */
    .page-789win {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for contrast */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 100px; /* Space for floating buttons */
    }

    .page-789win .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Section styling */
    .page-789win section {
      padding: 40px 0;
      text-align: center;
    }

    .page-789win section:nth-of-type(even) {
      background-color: #222222; /* Slightly different dark background for alternating sections */
    }

    /* Headings */
    .page-789win h1 {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent for headings */
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-789win h2 {
      font-size: 2em;
      color: #ffcc00;
      margin-top: 40px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-789win h3 {
      font-size: 1.5em;
      color: #eeeeee;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    /* Paragraphs */
    .page-789win p {
      margin-bottom: 15px;
      color: #f0f0f0;
    }

    /* Links and Buttons */
    .page-789win a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-789win a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .page-789win .btn {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
    }

    .page-789win .btn:hover {
      background-color: #fff;
      color: #000;
    }

    /* Banner specific styles */
    .page-789win .hero-banner {
      position: relative;
      background-size: cover;
      background-position: center top; /* Banner image at top */
      padding: 80px 15px 40px; /* Adjust padding for text below banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 300px; /* Minimum height for banner */
    }

    .page-789win .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
      z-index: 1;
    }

    .page-789win .hero-banner .banner-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-align: center;
      max-width: 800px;
    }

    .page-789win .hero-banner h1 {
      color: #ffcc00;
      font-size: 2.8em;
      margin-bottom: 15px;
    }

    .page-789win .hero-banner p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #fff;
    }

    /* Floating buttons */
    .page-789win .floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      transform: translateY(0);
      transition: transform 0.3s ease-in-out;
    }

    .page-789win .floating-buttons.hidden {
      transform: translateY(100%);
    }

    .page-789win .floating-buttons .btn {
      flex: 1;
      margin: 0 5px;
      padding: 10px 15px;
      font-size: 1em;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
      max-width: 48%; /* Adjust for spacing */
    }
    
    .page-789win .floating-buttons .btn.register {
        background-color: #e44d26; /* A contrasting color for register */
        color: #fff;
    }
    .page-789win .floating-buttons .btn.register:hover {
        background-color: #ff6a42;
    }

    /* Product display */
    .page-789win .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-789win .product-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-789win .product-card:hover {
      transform: translateY(-5px);
    }

    .page-789win .product-card img {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-789win .product-card h3 {
      font-size: 1.1em;
      margin: 15px 10px;
      color: #ffcc00;
    }

    .page-789win .product-card p {
      font-size: 0.9em;
      color: #ccc;
      padding: 0 10px 15px;
    }

    /* List styles */
    .page-789win ul, .page-789win ol {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 800px;
      margin: 20px auto;
    }

    .page-789win ul li, .page-789win ol li {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-789win ul li::before {
      content: '✓';
      color: #ffcc00;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }
    .page-789win ol li {
      display: block; /* Override flex for numbered list */
      text-align: left;
    }
    .page-789win ol li strong {
      color: #ffcc00;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789win h1 {
        font-size: 2em;
      }
      .page-789win h2 {
        font-size: 1.6em;
      }
      .page-789win .hero-banner {
        padding: 60px 15px 30px;
        min-height: 250px;
      }
      .page-789win .hero-banner h1 {
        font-size: 2.2em;
      }
      .page-789win .hero-banner p {
        font-size: 1em;
      }
      .page-789win .floating-buttons .btn {
        font-size: 0.9em;
        padding: 8px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-789win h1 {
        font-size: 1.8em;
      }
      .page-789win h2 {
        font-size: 1.4em;
      }
      .page-789win .floating-buttons {
        flex-direction: row; /* Keep row for small screens */
        padding: 8px 0;
      }
      .page-789win .floating-buttons .btn {
        font-size: 0.8em;
        padding: 8px 8px;
        margin: 0 3px;
      }
      .page-789win .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-789win .product-card img {
        height: 100px;
      }
      .page-789win ul li, .page-789win ol li {
        padding: 10px;
        font-size: 0.9em;
      }
    }
  