
    /* Page-specific CSS for 8k8 17 APK */
    .page-8k8-17-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-17-apk__hero-section {
      background: linear-gradient(135deg, #0f1c2d, #2a415e);
      color: #fff;
      padding: 60px 20px 80px; /* Adjust padding-top to account for header offset, if needed */
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: calc(10px + var(--header-offset, 122px)); /* Small top padding + header offset fallback */
    }

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

    .page-8k8-17-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffcc00; /* Gold for prominence */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__download-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #0f1c2d;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-17-apk__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-17-apk__section-alt {
      background-color: #f0f4f8;
    }

    .page-8k8-17-apk__section-title {
      font-size: 2.2em;
      color: #0f1c2d;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-17-apk__grid-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-17-apk__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-17-apk__grid-item-title {
      font-size: 1.5em;
      color: #0f1c2d;
      margin-top: 15px;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__grid-item-text {
      color: #555;
      font-size: 0.95em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-8k8-17-apk__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

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

    .page-8k8-17-apk__step-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-17-apk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-17-apk__step-content h3 {
      font-size: 1.3em;
      color: #0f1c2d;
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__step-content p {
      color: #555;
      font-size: 0.9em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__faq-section {
      background-color: #fff;
      padding: 50px 20px;
      max-width: 900px;
      margin: 0 auto 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-17-apk__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-8k8-17-apk__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-8k8-17-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 0;
      background-color: #fdfdfd;
      border-radius: 5px;
      padding-left: 15px;
      padding-right: 15px;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-17-apk__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #0f1c2d;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event to register on parent div */
      word-wrap: break-word;
      overflow-wrap: break-word;
      padding-right: 10px; /* Space for toggle icon */
    }

    .page-8k8-17-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event to register on parent div */
      width: 20px; /* Fixed width to prevent content shift */
      text-align: center;
    }

    .page-8k8-17-apk__faq-item.active .page-8k8-17-apk__faq-toggle {
      transform: rotate(45deg); /* + to x (minus sign) */
      color: #0f1c2d;
    }

    .page-8k8-17-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      font-size: 0.95em;
      background-color: #fdfdfd;
      border-radius: 0 0 5px 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-8k8-17-apk__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #0f1c2d;
      color: #fff;
      border-radius: 8px;
      max-width: 1200px;
      margin: 0 auto 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-17-apk__cta-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17-apk__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-17-apk__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-17-apk__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-17-apk__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-17-apk__hero-section {
        padding: 40px 15px 60px;
        padding-top: calc(10px + var(--header-offset, 122px));
      }
      .page-8k8-17-apk__hero-title {
        font-size: 2em;
      }
      .page-8k8-17-apk__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-17-apk__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-17-apk__section,
      .page-8k8-17-apk__faq-section,
      .page-8k8-17-apk__cta-section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }
      .page-8k8-17-apk__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-17-apk__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-17-apk__step-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      /* List item responsive requirements */
      .page-8k8-17-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important;
      }
      .page-8k8-17-apk__step-content h3 {
        font-size: 1.1em;
      }
      .page-8k8-17-apk__step-content p {
        font-size: 0.85em;
      }
      .page-8k8-17-apk__faq-question {
        padding: 12px 10px;
      }
      .page-8k8-17-apk__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-17-apk__faq-answer {
        padding: 15px 10px;
      }
      .page-8k8-17-apk__faq-item.active .page-8k8-17-apk__faq-answer {
        padding: 15px 10px !important;
      }
      .page-8k8-17-apk__image-container {
        width: 100% !important;
        max-width: 100% !important;
      }
      .page-8k8-17-apk__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17-apk__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-17-apk__section-title {
        font-size: 1.6em;
      }
    }
  