
    /* Base styles for the page */
    .page-8k8-5 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming shared.css handles body padding-top */
    }

    /* Fallback for fixed header offset if shared.css doesn't apply to body */
    .page-8k8-5:first-child {
        padding-top: var(--header-offset, 122px);
    }

    .page-8k8-5__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #2a2a4a; /* Slightly lighter dark background for sections */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-5__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-5__heading-primary {
      font-size: 2.8em;
      color: #ffcc00; /* Gold/yellow for primary headings */
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
      font-weight: bold;
    }

    .page-8k8-5__heading-secondary {
      font-size: 2.2em;
      color: #00e676; /* Green for secondary headings */
      text-align: center;
      margin-bottom: 25px;
      font-weight: 600;
    }

    .page-8k8-5__heading-tertiary {
      font-size: 1.6em;
      color: #ff6f00; /* Orange for tertiary headings */
      margin-bottom: 15px;
      font-weight: 500;
    }

    .page-8k8-5__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0; /* Slightly lighter text */
    }

    .page-8k8-5__button {
      display: inline-block;
      padding: 14px 30px;
      background-color: #ffcc00; /* Gold button */
      color: #1a1a2e; /* Dark text on gold */
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    }

    .page-8k8-5__button:hover {
      background-color: #ffe066; /* Lighter gold on hover */
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-8k8-5__hero-section {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
      border-radius: 0;
      box-shadow: none;
    }

    .page-8k8-5__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3; /* Subtle background image */
      filter: brightness(0.7); /* Darken background image without changing color */
    }

    .page-8k8-5__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-5__hero-tagline {
      font-size: 1.6em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8k8-5__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    /* Product Grid */
    .page-8k8-5__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-5__product-card {
      background-color: #3a3a5a; /* Card background */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure cards are same height */
      box-sizing: border-box;
    }

    .page-8k8-5__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-5__product-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #ffcc00;
    }

    .page-8k8-5__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-5__product-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-5__product-description {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* List styles for providers/payments */
    .page-8k8-5__list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for more items per row */
      gap: 15px;
      margin-top: 25px;
    }

    .page-8k8-5__list-item {
      background-color: #3a3a5a;
      padding: 15px 20px;
      border-radius: 8px;
      text-align: center;
      font-weight: 600;
      color: #ffcc00;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word; /* Modern equivalent */
    }

    .page-8k8-5__list-item:hover {
      background-color: #4a4a7a;
    }

    /* Promotions */
    .page-8k8-5__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-5__promo-card {
      background-color: #3a3a5a;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-8k8-5__promo-card:hover {
      transform: translateY(-5px);
      background-color: #4a4a7a;
    }

    .page-8k8-5__promo-title {
      font-size: 1.8em;
      color: #00e676;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-5__promo-description {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-8k8-5__promo-details-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #00e676;
      color: #1a1a2e;
      border-radius: 50px;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-8k8-5__promo-details-button:hover {
      background-color: #69f0ae;
    }

    /* Why Choose Us features */
    .page-8k8-5__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-5__feature-item {
      background-color: #3a3a5a;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-5__feature-item:hover {
      background-color: #4a4a7a;
    }

    .page-8k8-5__feature-icon {
      width: 100px; /* Display size, image placeholder is 400x400 */
      height: 100px;
      margin-bottom: 15px;
      object-fit: contain;
      filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.5)); /* Gold glow effect */
      max-width: 100%;
      height: auto;
    }

    .page-8k8-5__feature-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-5__feature-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-8k8-5__faq-section {
      padding: 40px 20px;
      background-color: #2a2a4a;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-5__faq-item {
      background-color: #3a3a5a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a7a;
      border-bottom: 1px solid #5a5a8a;
      transition: background-color 0.3s ease;
    }

    .page-8k8-5__faq-question:hover {
      background-color: #5a5a9a;
    }

    .page-8k8-5__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-5__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #00e676;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '−' */
      color: #ff6f00;
    }

    .page-8k8-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #e0e0e0;
      background-color: #3a3a5a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-5__heading-primary {
        font-size: 2em;
      }

      .page-8k8-5__heading-secondary {
        font-size: 1.8em;
      }

      .page-8k8-5__heading-tertiary {
        font-size: 1.4em;
      }

      .page-8k8-5__hero-section {
        padding: 60px 15px;
      }

      .page-8k8-5__hero-tagline {
        font-size: 1.2em;
      }

      .page-8k8-5__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-5__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-5__section {
        padding: 30px 15px;
      }

      .page-8k8-5__product-grid,
      .page-8k8-5__promo-grid,
      .page-8k8-5__features-grid {
        grid-template-columns: 1fr;
      }

      /* List item mobile responsiveness */
      .page-8k8-5__list {
        grid-template-columns: 1fr; /* Stack items vertically */
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-5__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-5__product-image,
      .page-8k8-5__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-5__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-5__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-5__faq-answer {
        padding: 0 20px; /* Initial padding */
      }

      .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
        padding: 15px 20px !important; /* Final padding */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-5__heading-primary {
        font-size: 1.8em;
      }

      .page-8k8-5__heading-secondary {
        font-size: 1.6em;
      }

      .page-8k8-5__hero-tagline {
        font-size: 1em;
      }
    }
  