
    :root {
      --page-777pub-4-primary-color: #e44d26; /* Vibrant Red-Orange */
      --page-777pub-4-secondary-color: #f7b731; /* Golden Yellow */
      --page-777pub-4-dark-background: #1a1a2e; /* Deep Blue-Purple */
      --page-777pub-4-light-background: #22223a; /* Slightly lighter Blue-Purple */
      --page-777pub-4-light-text: #ffffff;
      --page-777pub-4-grey-text: #cccccc;
      --page-777pub-4-border-color: #33334d;
      --page-777pub-4-button-hover: #ff6f3f;
    }

    /* Base styles for the page content */
    .page-777pub-4 {
      font-family: 'Arial', sans-serif;
      color: var(--page-777pub-4-light-text);
      background-color: var(--page-777pub-4-dark-background);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons and footer */
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
      text-align: center;
    }

    .page-777pub-4__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-777pub-4__section {
      padding: 60px 0;
      position: relative;
    }

    .page-777pub-4__section--dark {
      background-color: var(--page-777pub-4-dark-background);
    }

    .page-777pub-4__section--light {
      background-color: var(--page-777pub-4-light-background);
    }

    .page-777pub-4__h1 {
      font-size: 3em;
      color: var(--page-777pub-4-secondary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.2;
    }

    .page-777pub-4__h2 {
      font-size: 2.5em;
      color: var(--page-777pub-4-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-777pub-4__h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-777pub-4-secondary-color);
      border-radius: 2px;
    }

    .page-777pub-4__h3 {
      font-size: 1.8em;
      color: var(--page-777pub-4-light-text);
      margin-bottom: 15px;
    }

    .page-777pub-4__text {
      font-size: 1.1em;
      color: var(--page-777pub-4-grey-text);
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-777pub-4__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      padding: 100px 0 80px; /* Decorative top padding, body already offset */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      position: relative;
      overflow: hidden;
    }

    .page-777pub-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-777pub-4__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Dim the background image */
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box;
    }

    .page-777pub-4__hero-h1 {
      font-size: 4em;
      color: var(--page-777pub-4-secondary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .page-777pub-4__hero-description {
      font-size: 1.5em;
      color: var(--page-777pub-4-light-text);
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    .page-777pub-4__cta-button {
      display: inline-block;
      background-color: var(--page-777pub-4-primary-color);
      color: var(--page-777pub-4-light-text);
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-777pub-4__cta-button:hover {
      background-color: var(--page-777pub-4-button-hover);
    }

    /* Floating Buttons */
    .page-777pub-4__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-777pub-4__floating-button {
      background-color: var(--page-777pub-4-primary-color);
      color: var(--page-777pub-4-light-text);
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-777pub-4__floating-button:hover {
      background-color: var(--page-777pub-4-button-hover);
      transform: translateY(-2px);
    }

    /* Product Display */
    .page-777pub-4__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-777pub-4__product-card {
      background-color: var(--page-777pub-4-light-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-777pub-4-border-color);
      box-sizing: border-box; /* Ensure padding/border are included in width */
    }

    .page-777pub-4__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-777pub-4__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-777pub-4__product-content {
      padding: 20px;
    }

    .page-777pub-4__product-title {
      font-size: 1.5em;
      color: var(--page-777pub-4-secondary-color);
      margin-bottom: 10px;
    }

    .page-777pub-4__product-description {
      font-size: 0.95em;
      color: var(--page-777pub-4-grey-text);
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-777pub-4__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-777pub-4__promo-card {
      background-color: var(--page-777pub-4-light-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 30px;
      border: 1px solid var(--page-777pub-4-border-color);
      box-sizing: border-box;
    }

    .page-777pub-4__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-777pub-4__promo-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      border-radius: 50%;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-777pub-4__promo-title {
      font-size: 1.6em;
      color: var(--page-777pub-4-primary-color);
      margin-bottom: 10px;
    }

    .page-777pub-4__promo-description {
      font-size: 1em;
      color: var(--page-777pub-4-grey-text);
      margin-bottom: 20px;
    }

    /* Why Choose Us */
    .page-777pub-4__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-777pub-4__feature-item {
      background-color: var(--page-777pub-4-light-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-777pub-4-border-color);
      box-sizing: border-box;
    }

    .page-777pub-4__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-777pub-4__feature-title {
      font-size: 1.4em;
      color: var(--page-777pub-4-secondary-color);
      margin-bottom: 10px;
    }

    .page-777pub-4__feature-description {
      font-size: 0.95em;
      color: var(--page-777pub-4-grey-text);
    }

    /* Payments & Providers */
    .page-777pub-4__h3--providers {
        margin-top: 60px;
    }
    .page-777pub-4__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      padding: 0 15px; /* Add padding for grid on smaller screens */
      box-sizing: border-box;
    }

    .page-777pub-4__logo-item {
      background-color: var(--page-777pub-4-light-background);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      height: 100px;
      border: 1px solid var(--page-777pub-4-border-color);
      box-sizing: border-box;
    }

    .page-777pub-4__logo-image {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-777pub-4__faq-section {
      background-color: var(--page-777pub-4-dark-background);
      padding: 60px 0;
    }

    .page-777pub-4__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-777pub-4__faq-item {
      background-color: var(--page-777pub-4-light-background);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-777pub-4-border-color);
    }

    .page-777pub-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2e2e4a; /* Slightly darker than light-background for contrast */
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-777pub-4__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-777pub-4__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--page-777pub-4-light-text);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-777pub-4__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-777pub-4-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-777pub-4__faq-item.active .page-777pub-4__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus effect */
    }

    .page-777pub-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-777pub-4-grey-text);
      font-size: 1em;
      text-align: left;
    }

    .page-777pub-4__faq-item.active .page-777pub-4__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-777pub-4__h1 {
        font-size: 2.5em;
      }

      .page-777pub-4__h2 {
        font-size: 2em;
      }

      .page-777pub-4__hero-h1 {
        font-size: 2.8em;
      }

      .page-777pub-4__hero-description {
        font-size: 1.2em;
      }

      .page-777pub-4__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-777pub-4__section {
        padding: 40px 0;
      }

      .page-777pub-4__floating-buttons {
        bottom: 10px;
        right: 10px;
      }

      .page-777pub-4__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-777pub-4__product-grid,
      .page-777pub-4__promo-grid,
      .page-777pub-4__features-grid {
        grid-template-columns: 1fr;
      }

      .page-777pub-4__product-card,
      .page-777pub-4__promo-card,
      .page-777pub-4__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-777pub-4__product-image,
      .page-777pub-4__promo-icon,
      .page-777pub-4__feature-icon,
      .page-777pub-4__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-777pub-4__faq-list {
        padding: 0 15px;
      }

      .page-777pub-4__faq-question {
        padding: 15px 20px;
      }

      .page-777pub-4__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-777pub-4__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-777pub-4__faq-item.active .page-777pub-4__faq-answer {
        padding: 15px 20px !important;
      }

      .page-777pub-4__logo-grid {
        gap: 15px;
        padding: 0 10px;
      }

      .page-777pub-4__logo-item {
        min-width: unset;
        width: calc(50% - 15px); /* Two items per row with gap */
        height: 80px;
        padding: 10px;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-777pub-4__logo-image {
        max-height: 40px;
      }
    }

    @media (max-width: 480px) {
      .page-777pub-4__hero-h1 {
        font-size: 2.2em;
      }
      .page-777pub-4__hero-description {
        font-size: 1em;
      }
      .page-777pub-4__h1 {
        font-size: 2em;
      }
      .page-777pub-4__h2 {
        font-size: 1.8em;
      }
      .page-777pub-4__floating-buttons {
        flex-direction: row;
        width: calc(100% - 20px);
        justify-content: center;
        gap: 8px;
        bottom: 10px;
        left: 10px;
        right: 10px;
      }
      .page-777pub-4__floating-button {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.85em;
      }
      .page-777pub-4__logo-item {
        width: calc(50% - 10px); /* Adjust for smaller screens */
      }
    }
  