
    /* Base styles for the page, scoped to page-unli-5g-data-599 */
    .page-unli-5g-data-599 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header, if shared.css doesn't set body padding-top */
    }

    /* General section styling */
    .page-unli-5g-data-599__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-unli-5g-data-599__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-unli-5g-data-599__section-title {
      font-size: 2.5em;
      color: #e74c3c; /* A vibrant red for titles */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-unli-5g-data-599__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-unli-5g-data-599__section--dark .page-unli-5g-data-599__section-title {
      color: #f1c40f; /* Yellow for dark section titles */
    }

    .page-unli-5g-data-599__section--dark .page-unli-5g-data-599__section-title::after {
      background-color: #f1c40f;
    }

    .page-unli-5g-data-599__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-unli-5g-data-599__hero-section {
      position: relative;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, relying on body padding for main offset */
    }

    .page-unli-5g-data-599__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%;
      height: auto;
    }

    .page-unli-5g-data-599__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-unli-5g-data-599__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-unli-5g-data-599__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-unli-5g-data-599__cta-button {
      display: inline-block;
      background-color: #27ae60; /* Green for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-unli-5g-data-599__cta-button:hover {
      background-color: #2ecc71;
    }

    /* Features/Benefits Section */
    .page-unli-5g-data-599__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-unli-5g-data-599__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-unli-5g-data-599__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-unli-5g-data-599__feature-icon {
      width: 100px; /* Scaled down display size */
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 50%;
      background-color: #ecf0f1;
      padding: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      height: auto;
    }

    .page-unli-5g-data-599__feature-title {
      font-size: 1.5em;
      color: #34495e;
      margin-bottom: 15px;
    }

    .page-unli-5g-data-599__feature-description {
      color: #555;
    }

    /* How It Works Section */
    .page-unli-5g-data-599__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-unli-5g-data-599__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      position: relative;
      box-sizing: border-box; /* Required for list items */
    }

    .page-unli-5g-data-599__step-number {
      background-color: #e74c3c;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: -55px auto 20px auto; /* Position slightly above the box */
      border: 3px solid #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-unli-5g-data-599__step-title {
      font-size: 1.4em;
      color: #34495e;
      margin-bottom: 10px;
    }

    .page-unli-5g-data-599__step-description {
      color: #555;
    }

    /* Gaming Showcase */
    .page-unli-5g-data-599__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-unli-5g-data-599__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-unli-5g-data-599__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-unli-5g-data-599__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-unli-5g-data-599__game-content {
      padding: 20px;
    }

    .page-unli-5g-data-599__game-title {
      font-size: 1.3em;
      color: #34495e;
      margin-bottom: 10px;
    }

    .page-unli-5g-data-599__game-description {
      font-size: 0.95em;
      color: #555;
    }

    /* FAQ Section */
    .page-unli-5g-data-599__faq-container {
      margin-top: 40px;
    }

    .page-unli-5g-data-599__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-unli-5g-data-599__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      color: #34495e;
      cursor: pointer;
      user-select: none;
      background-color: #ecf0f1;
      transition: background-color 0.3s ease;
    }

    .page-unli-5g-data-599__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to match parent font-size */
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-unli-5g-data-599__faq-question:hover {
      background-color: #e0e6e9;
    }

    .page-unli-5g-data-599__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-unli-5g-data-599__faq-item.active .page-unli-5g-data-599__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-unli-5g-data-599__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question horizontal padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
    }

    .page-unli-5g-data-599__faq-item.active .page-unli-5g-data-599__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-unli-5g-data-599__hero-title {
        font-size: 2.8em;
      }
      .page-unli-5g-data-599__hero-subtitle {
        font-size: 1.3em;
      }
      .page-unli-5g-data-599__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-unli-5g-data-599__section {
        padding: 30px 15px;
      }

      .page-unli-5g-data-599__hero-section {
        height: 50vh;
        min-height: 350px;
      }

      .page-unli-5g-data-599__hero-title {
        font-size: 2.2em;
      }

      .page-unli-5g-data-599__hero-subtitle {
        font-size: 1.1em;
      }

      .page-unli-5g-data-599__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* Mobile list item responsiveness */
      .page-unli-5g-data-599__features-grid,
      .page-unli-5g-data-599__steps-grid,
      .page-unli-5g-data-599__game-showcase {
        grid-template-columns: 1fr; /* Single column layout */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-unli-5g-data-599__features-grid .page-unli-5g-data-599__feature-item,
      .page-unli-5g-data-599__steps-grid .page-unli-5g-data-599__step-item,
      .page-unli-5g-data-599__game-showcase .page-unli-5g-data-599__game-card,
      .page-unli-5g-data-599__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
      }

      .page-unli-5g-data-599__feature-description,
      .page-unli-5g-data-599__step-description,
      .page-unli-5g-data-599__game-description,
      .page-unli-5g-data-599__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-unli-5g-data-599__step-number {
        margin-top: -45px; /* Adjust for smaller screens */
      }

      .page-unli-5g-data-599__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-unli-5g-data-599__faq-answer {
        padding: 0 20px;
      }

      .page-unli-5g-data-599__faq-item.active .page-unli-5g-data-599__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-unli-5g-data-599__hero-title {
        font-size: 1.8em;
      }
      .page-unli-5g-data-599__hero-subtitle {
        font-size: 1em;
      }
      .page-unli-5g-data-599__section-title {
        font-size: 1.8em;
      }
      .page-unli-5g-data-599__faq-question {
        font-size: 1em;
      }
    }
  