
    :root {
      --primary-color: #e44d26; /* A vibrant red-orange for branding */
      --secondary-color: #333;
      --accent-color: #ffcc00; /* Gold for highlights */
      --text-color-light: #f5f5f5;
      --text-color-dark: #333;
      --background-light: #ffffff;
      --background-dark: #1a1a1a;
      --border-color: #eee;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --header-offset: 122px; /* Default value if not set by shared.css */
    }

    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-8k8-apk__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8k8-apk__container {
        padding: 15px;
      }
      .page-8k8-apk {
        padding-top: 5px;
      }
    }

    .page-8k8-apk__hero-section {
      background: linear-gradient(135deg, #e44d26, #ff6f61);
      color: var(--text-color-light);
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px var(--shadow-light);
    }

    .page-8k8-apk__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 70%);
      transform: rotate(45deg);
      opacity: 0.2;
      animation: page-8k8-apk__hero-animation 15s infinite linear;
    }

    @keyframes page-8k8-apk__hero-animation {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .page-8k8-apk__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-apk__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-apk__download-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-8k8-apk__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-apk__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-apk__hero-description {
        font-size: 1em;
      }
      .page-8k8-apk__download-button {
        padding: 12px 30px;
        font-size: 1em;
      }
    }

    .page-8k8-apk__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-apk__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .page-8k8-apk__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
    }

    .page-8k8-apk__features-grid,
    .page-8k8-apk__payment-methods-grid,
    .page-8k8-apk__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-8k8-apk__feature-card,
    .page-8k8-apk__payment-card,
    .page-8k8-apk__provider-card {
      background-color: var(--background-light);
      border-radius: 10px;
      box-shadow: 0 4px 12px var(--shadow-light);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-8k8-apk__feature-card:hover,
    .page-8k8-apk__payment-card:hover,
    .page-8k8-apk__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-apk__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: cover;
      min-height: 200px; /* Ensure minimum height */
    }

    @media (max-width: 768px) {
      .page-8k8-apk__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-apk__feature-card,
      .page-8k8-apk__payment-card,
      .page-8k8-apk__provider-card {
        padding: 20px;
      }
      .page-8k8-apk__features-grid,
      .page-8k8-apk__payment-methods-grid,
      .page-8k8-apk__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-8k8-apk__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-apk__card-description {
      font-size: 1em;
      color: var(--secondary-color);
    }

    .page-8k8-apk__how-to-section {
      background-color: #f9f9f9;
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
    }

    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-apk__step-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 60px;
      transition: all 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-apk__step-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-apk__step-number {
      position: absolute;
      left: 20px;
      top: 25px;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-8k8-apk__step-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-apk__step-description {
      font-size: 1em;
      color: var(--secondary-color);
    }

    @media (max-width: 768px) {
      .page-8k8-apk__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-apk__step-number {
        left: 15px;
        top: 20px;
      }
      .page-8k8-apk__how-to-section {
        padding: 40px 15px;
      }
    }

    .page-8k8-apk__image-full-width {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 4px 12px var(--shadow-light);
      object-fit: cover;
      min-height: 250px; /* Ensure minimum height */
    }

    @media (max-width: 768px) {
      .page-8k8-apk__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        min-height: 180px;
      }
    }

    .page-8k8-apk__faq-section {
      background-color: #f9f9f9;
      padding: 60px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8-apk__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-8k8-apk__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure proper sizing */
    }

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      color: var(--secondary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-apk__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-8k8-apk__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;
      color: var(--secondary-color);
      background-color: #fefefe;
      opacity: 0;
    }

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

    .page-8k8-apk__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    @media (max-width: 768px) {
      .page-8k8-apk__faq-section {
        padding: 40px 15px;
      }
      .page-8k8-apk__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-apk__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-apk__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-apk__faq-item.active .page-8k8-apk__faq-answer {
        padding: 15px 20px !important;
      }
    }

    .page-8k8-apk__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-apk__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-apk__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__cta-button {
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 18px 45px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-apk__cta-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-8k8-apk__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-apk__cta-title {
        font-size: 2em;
      }
      .page-8k8-apk__cta-description {
        font-size: 1em;
      }
      .page-8k8-apk__cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
      }
    }

    .page-8k8-apk__text-content p {
      margin-bottom: 1em;
      color: var(--secondary-color);
    }

    .page-8k8-apk__text-content strong {
      color: var(--primary-color);
    }
  