
    /* Page specific CSS for 8k8 apk */
    :root {
      --primary-color: #e0b000; /* A golden/yellowish color for branding */
      --secondary-color: #007bff; /* A complementary blue */
      --text-color: #333333;
      --light-text-color: #ffffff;
      --background-color: #f8f9fa;
      --card-background: #ffffff;
      --border-color: #e9ecef;
    }

    .page-8k8-apk {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      padding-top: 10px; /* Small top padding for aesthetic, main header offset handled by body */
    }

    .page-8k8-apk__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--background-color);
      border-radius: 8px;
    }

    .page-8k8-apk__section--dark {
      background-color: #343a40;
      color: var(--light-text-color);
    }

    .page-8k8-apk__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-8k8-apk__section-title--light {
      color: var(--light-text-color);
    }

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

    /* Hero Section */
    .page-8k8-apk__hero-section {
      background: linear-gradient(135deg, #1a1a1a, #333333);
      color: var(--light-text-color);
      text-align: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 0; /* No border-radius for hero */
      margin-bottom: 0; /* No margin-bottom for hero */
    }

    .page-8k8-apk__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      font-weight: 800;
      line-height: 1.2;
    }

    .page-8k8-apk__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      opacity: 0.9;
    }

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #1a1a1a;
      padding: 15px 40px;
      font-size: 1.2em;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__download-button:hover {
      background-color: #ffc107; /* Slightly lighter yellow */
      transform: translateY(-3px);
    }
    
    .page-8k8-apk__download-button:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-apk__hero-image-wrapper {
      margin-top: 40px;
      width: 100%;
      max-width: 600px; /* Constrain image width for better presentation */
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-apk__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Features Section */
    .page-8k8-apk__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-apk__feature-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-apk__feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-apk__feature-icon {
      width: 100%;
      max-width: 250px; /* Min size 200x200, so 250x250 is good */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-apk__feature-description {
      font-size: 1em;
      color: var(--text-color);
      text-align: left;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* How-to Section */
    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .page-8k8-apk__step-item {
      background-color: var(--card-background);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      border-left: 5px solid var(--primary-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-apk__step-number {
      font-size: 2em;
      font-weight: 700;
      color: var(--primary-color);
      margin-right: 20px;
      min-width: 40px;
      text-align: center;
    }

    .page-8k8-apk__step-content {
      flex-grow: 1;
    }

    .page-8k8-apk__step-title {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

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

    /* Promotions Section */
    .page-8k8-apk__promo-content {
      text-align: center;
      margin-top: 30px;
    }

    .page-8k8-apk__promo-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }

    .page-8k8-apk__promo-image-wrapper {
      margin-top: 30px;
      width: 100%;
      max-width: 900px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* FAQ Section */
    .page-8k8-apk__faq-section {
      background-color: var(--card-background);
      border-radius: 8px;
      padding: 40px 20px;
      margin-bottom: 20px;
    }

    .page-8k8-apk__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-apk__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* For responsive lists */
      width: 100%; /* For responsive lists */
    }

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      font-weight: 600;
      color: var(--text-color);
    }

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--text-color); /* Ensure contrast */
      pointer-events: none; /* Crucial for click event */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Crucial for click event */
      transition: transform 0.3s ease;
      line-height: 1; /* Prevent extra line height issues */
    }

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

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--card-background);
      color: var(--text-color);
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-8k8-apk__cta-section {
      text-align: center;
      background-color: var(--primary-color);
      color: #1a1a1a;
      padding: 60px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-apk__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-8k8-apk__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .page-8k8-apk__cta-button {
      display: inline-block;
      background-color: #1a1a1a;
      color: var(--primary-color);
      padding: 15px 45px;
      font-size: 1.2em;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__cta-button:hover {
      background-color: #333333;
      transform: translateY(-3px);
    }
    .page-8k8-apk__cta-button:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-8k8-apk__hero-title {
        font-size: 3em;
      }
      .page-8k8-apk__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-apk__section-title {
        font-size: 2em;
      }
      .page-8k8-apk__feature-title {
        font-size: 1.6em;
      }
      .page-8k8-apk__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-apk__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-apk {
        padding-top: 5px; /* Adjust top padding for mobile */
      }
      .page-8k8-apk__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-apk__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-apk__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
      }
      .page-8k8-apk__download-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-8k8-apk__section {
        padding: 30px 15px;
      }
      .page-8k8-apk__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-8k8-apk__features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .page-8k8-apk__feature-card {
        padding: 25px;
      }
      .page-8k8-apk__feature-icon {
        max-width: 200px; /* Ensure min 200px constraint */
        margin-bottom: 15px;
      }
      .page-8k8-apk__feature-title {
        font-size: 1.4em;
      }
      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important; /* List item responsive requirement */
        max-width: 100% !important; /* List item responsive requirement */
        box-sizing: border-box !important; /* List item responsive requirement */
        margin-left: 0 !important; /* List item responsive requirement */
        margin-right: 0 !important; /* List item responsive requirement */
      }
      .page-8k8-apk__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-apk__steps-list {
        width: 100% !important; /* List container responsive requirement */
        max-width: 100% !important; /* List container responsive requirement */
        box-sizing: border-box !important; /* List container responsive requirement */
        padding: 0 !important; /* List container responsive requirement */
        margin-left: 0 !important; /* List container responsive requirement */
        margin-right: 0 !important; /* List container responsive requirement */
      }
      .page-8k8-apk__step-description, .page-8k8-apk__feature-description {
        word-wrap: break-word !important; /* Text wrap for lists */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-apk__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-apk__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-apk__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-apk__faq-answer {
        padding: 15px 20px;
      }
      .page-8k8-apk__faq-item {
        width: 100% !important; /* List item responsive requirement */
        max-width: 100% !important; /* List item responsive requirement */
        box-sizing: border-box !important; /* List item responsive requirement */
        margin-left: 0 !important; /* List item responsive requirement */
        margin-right: 0 !important; /* List item responsive requirement */
      }
      .page-8k8-apk__faq-list {
        width: 100% !important; /* List container responsive requirement */
        max-width: 100% !important; /* List container responsive requirement */
        box-sizing: border-box !important; /* List container responsive requirement */
        padding: 0 !important; /* List container responsive requirement */
        margin-left: 0 !important; /* List container responsive requirement */
        margin-right: 0 !important; /* List container responsive requirement */
      }
      .page-8k8-apk__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-apk__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-apk__cta-description {
        font-size: 1em;
      }
      .page-8k8-apk__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      /* Image responsive */
      .page-8k8-apk__hero-image-wrapper,
      .page-8k8-apk__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-8k8-apk__hero-image,
      .page-8k8-apk__promo-image,
      .page-8k8-apk__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-apk__hero-title {
        font-size: 2em;
      }
      .page-8k8-apk__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-apk__download-button {
        padding: 10px 25px;
        font-size: 1em;
      }
      .page-8k8-apk__section-title {
        font-size: 1.5em;
      }
      .page-8k8-apk__feature-title {
        font-size: 1.2em;
      }
      .page-8k8-apk__feature-description {
        font-size: 0.9em;
      }
      .page-8k8-apk__step-title {
        font-size: 1.2em;
      }
      .page-8k8-apk__step-description {
        font-size: 0.9em;
      }
      .page-8k8-apk__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-apk__faq-answer {
        font-size: 0.9em;
      }
      .page-8k8-apk__cta-title {
        font-size: 1.5em;
      }
      .page-8k8-apk__cta-description {
        font-size: 0.9em;
      }
      .page-8k8-apk__cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }
    }
  