
    :root {
      --page-2-b-ng-primary-color: #007bff; /* Blue for highlights */
      --page-2-b-ng-secondary-color: #ffc107; /* Gold for accents */
      --page-2-b-ng-dark-background: #1a1a1a; /* Dark background */
      --page-2-b-ng-light-text: #f8f9fa; /* Light text */
      --page-2-b-ng-gray-text: #ced4da; /* Gray text */
      --page-2-b-ng-border-color: #343a40; /* Dark border */
      --page-2-b-ng-button-hover: #0056b3;
      --page-2-b-ng-accent-hover: #e0a800;
    }

    .page-2-b-ng {
      font-family: 'Arial', sans-serif;
      color: var(--page-2-b-ng-light-text);
      background-color: var(--page-2-b-ng-dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Adjust for fixed header, if shared.css doesn't handle body padding-top */
    }

    .page-2-b-ng__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-2-b-ng__section-title {
      font-size: 2.5em;
      color: var(--page-2-b-ng-secondary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .page-2-b-ng__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-2-b-ng-primary-color);
    }

    .page-2-b-ng__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      color: var(--page-2-b-ng-light-text);
      overflow: hidden;
      padding: 60px 20px 40px;
      text-align: center;
    }

    .page-2-b-ng__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.3;
    }

    .page-2-b-ng__hero-content {
      z-index: 1;
      max-width: 800px;
    }

    .page-2-b-ng__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-2-b-ng-secondary-color);
      line-height: 1.2;
    }

    .page-2-b-ng__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-2-b-ng-gray-text);
    }

    .page-2-b-ng__hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-2-b-ng__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-2-b-ng__button--primary {
      background-color: var(--page-2-b-ng-primary-color);
      color: var(--page-2-b-ng-light-text);
    }

    .page-2-b-ng__button--primary:hover {
      background-color: var(--page-2-b-ng-button-hover);
      transform: translateY(-2px);
    }

    .page-2-b-ng__button--secondary {
      background-color: transparent;
      color: var(--page-2-b-ng-secondary-color);
      border: 2px solid var(--page-2-b-ng-secondary-color);
    }

    .page-2-b-ng__button--secondary:hover {
      background-color: var(--page-2-b-ng-secondary-color);
      color: var(--page-2-b-ng-dark-background);
      transform: translateY(-2px);
    }

    .page-2-b-ng__button--large {
      padding: 18px 35px;
      font-size: 1.3em;
    }

    /* Floating Buttons */
    .page-2-b-ng__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-2-b-ng__floating-button {
      background-color: var(--page-2-b-ng-primary-color);
      color: var(--page-2-b-ng-light-text);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
    }

    .page-2-b-ng__floating-button--login {
      background-color: var(--page-2-b-ng-secondary-color);
      color: var(--page-2-b-ng-dark-background);
    }

    .page-2-b-ng__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-2-b-ng__floating-button--register:hover {
      background-color: var(--page-2-b-ng-button-hover);
    }

    .page-2-b-ng__floating-button--login:hover {
      background-color: var(--page-2-b-ng-accent-hover);
    }

    /* Brand Keyword Section */
    .page-2-b-ng__brand-keyword-section {
      background-color: #282828;
      padding: 50px 20px;
      text-align: center;
    }

    .page-2-b-ng__brand-keyword-title {
      font-size: 2.8em;
      color: var(--page-2-b-ng-secondary-color);
      margin-bottom: 20px;
    }

    .page-2-b-ng__brand-keyword-text {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto;
      color: var(--page-2-b-ng-gray-text);
    }

    /* Product Display Section */
    .page-2-b-ng__product-display-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
    }

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

    .page-2-b-ng__product-item {
      background-color: #282828;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-2-b-ng__product-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .page-2-b-ng__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-2-b-ng__product-name {
      font-size: 1.8em;
      color: var(--page-2-b-ng-primary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-2-b-ng__product-description {
      font-size: 1em;
      color: var(--page-2-b-ng-gray-text);
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-2-b-ng__promotions-section {
      background-color: #222222;
      padding: 60px 20px;
    }

    .page-2-b-ng__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-2-b-ng__promotion-item {
      background-color: #282828;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 25px;
    }

    .page-2-b-ng__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-2-b-ng__promotion-title {
      font-size: 1.8em;
      color: var(--page-2-b-ng-secondary-color);
      margin-bottom: 15px;
      padding: 0 15px;
    }

    .page-2-b-ng__promotion-description {
      font-size: 1em;
      color: var(--page-2-b-ng-gray-text);
      margin-bottom: 25px;
      padding: 0 15px;
    }

    /* Why Choose Us Section */
    .page-2-b-ng__why-choose-us-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
    }

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

    .page-2-b-ng__feature-item {
      background-color: #282828;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-2-b-ng__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-2-b-ng__feature-title {
      font-size: 1.8em;
      color: var(--page-2-b-ng-primary-color);
      margin-bottom: 15px;
    }

    .page-2-b-ng__feature-description {
      font-size: 1em;
      color: var(--page-2-b-ng-gray-text);
    }

    /* Payment Methods & Providers Section */
    .page-2-b-ng__payment-methods-section,
    .page-2-b-ng__providers-section {
      background-color: #222222;
      padding: 60px 20px;
    }

    .page-2-b-ng__payment-grid,
    .page-2-b-ng__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-2-b-ng__payment-item,
    .page-2-b-ng__provider-item {
      background-color: #282828;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 200px; /* Max width for individual items */
      text-align: center;
      box-sizing: border-box;
    }

    .page-2-b-ng__payment-item a,
    .page-2-b-ng__provider-item a {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .page-2-b-ng__payment-item:hover,
    .page-2-b-ng__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-2-b-ng__payment-logo,
    .page-2-b-ng__provider-logo {
      width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-2-b-ng__payment-name,
    .page-2-b-ng__provider-name {
      font-size: 1em;
      color: var(--page-2-b-ng-gray-text);
      font-weight: bold;
    }

    /* FAQ Section */
    .page-2-b-ng__faq-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
    }

    .page-2-b-ng__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-2-b-ng__faq-item {
      background-color: #282828;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-2-b-ng__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      color: var(--page-2-b-ng-light-text);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-2-b-ng__faq-question:hover {
      background-color: #444444;
    }

    .page-2-b-ng__faq-question-text {
        margin: 0;
        color: var(--page-2-b-ng-light-text);
        font-size: 1.2em;
        pointer-events: none; /* Prevents h3 from blocking click event */
    }

    .page-2-b-ng__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-2-b-ng-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents span from blocking click event */
    }

    .page-2-b-ng__faq-item.active .page-2-b-ng__faq-toggle {
      transform: rotate(45deg); /* Changes + to x (or - if using a different char) */
      color: var(--page-2-b-ng-primary-color);
    }

    .page-2-b-ng__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust for desired padding when open */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-2-b-ng-gray-text);
    }

    .page-2-b-ng__faq-item.active .page-2-b-ng__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Ensure padding is applied when active */
      opacity: 1;
    }

    .page-2-b-ng__faq-answer p {
      margin: 0;
    }

    /* Call to Action Section */
    .page-2-b-ng__cta-section {
      background-color: #222222;
      padding: 60px 20px;
      text-align: center;
    }

    .page-2-b-ng__cta-title {
      font-size: 2.8em;
      color: var(--page-2-b-ng-secondary-color);
      margin-bottom: 20px;
    }

    .page-2-b-ng__cta-description {
      font-size: 1.1em;
      color: var(--page-2-b-ng-gray-text);
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-2-b-ng__hero-title {
        font-size: 3em;
      }
      .page-2-b-ng__section-title {
        font-size: 2em;
      }
      .page-2-b-ng__brand-keyword-title {
        font-size: 2.2em;
      }
      .page-2-b-ng__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-2-b-ng__hero-section {
        min-height: 50vh;
        padding: 40px 15px 30px;
      }
      .page-2-b-ng__hero-title {
        font-size: 2.5em;
      }
      .page-2-b-ng__hero-description {
        font-size: 1em;
      }
      .page-2-b-ng__hero-cta {
        flex-direction: column;
        gap: 15px;
      }
      .page-2-b-ng__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-2-b-ng__section {
        padding: 30px 15px;
      }
      .page-2-b-ng__section-title {
        font-size: 1.8em;
      }

      .page-2-b-ng__brand-keyword-title {
        font-size: 2em;
      }

      .page-2-b-ng__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }
      .page-2-b-ng__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-2-b-ng__product-grid,
      .page-2-b-ng__promotion-list,
      .page-2-b-ng__features-grid,
      .page-2-b-ng__payment-grid,
      .page-2-b-ng__provider-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-2-b-ng__product-item,
      .page-2-b-ng__promotion-item,
      .page-2-b-ng__feature-item,
      .page-2-b-ng__payment-item,
      .page-2-b-ng__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-2-b-ng__product-image,
      .page-2-b-ng__promotion-image,
      .page-2-b-ng__feature-icon,
      .page-2-b-ng__payment-logo,
      .page-2-b-ng__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-2-b-ng__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-2-b-ng__faq-question-text {
        font-size: 1.1em;
      }
      .page-2-b-ng__faq-answer {
        padding: 0 20px;
      }
      .page-2-b-ng__faq-item.active .page-2-b-ng__faq-answer {
        padding: 15px 20px !important;
      }

      .page-2-b-ng__cta-title {
        font-size: 2em;
      }
      .page-2-b-ng__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-2-b-ng__hero-title {
        font-size: 2em;
      }
      .page-2-b-ng__section-title {
        font-size: 1.6em;
      }
      .page-2-b-ng__brand-keyword-title {
        font-size: 1.8em;
      }
      .page-2-b-ng__cta-title {
        font-size: 1.8em;
      }
      .page-2-b-ng__floating-button {
        padding: 8px 12px;
        font-size: 0.85em;
        min-width: 80px;
      }
    }
  