
    /* Page-specific CSS for 8k8 APK */
    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small top padding, assuming shared.css handles body padding for header */
    }

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

    .page-8k8-apk__hero-section {
      background: linear-gradient(135deg, #0056b3, #003d82);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-8k8-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
    }

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

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

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

    .page-8k8-apk__image-container {
      text-align: center;
      margin: 40px 0;
    }

    .page-8k8-apk__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-apk__content-title {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
    }

    .page-8k8-apk__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-8k8-apk__feature-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-8k8-apk__feature-item {
      background-color: #e8f0fe;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-8k8-apk__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-apk__feature-icon {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-apk__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-8k8-apk__step-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-8k8-apk__step-number {
      counter-increment: step-counter;
      background-color: #0056b3;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-8k8-apk__step-number::before {
      content: counter(step-counter);
    }

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

    .page-8k8-apk__step-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .page-8k8-apk__step-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section Styles */
    .page-8k8-apk__faq-section {
      background-color: #e8f0fe;
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-apk__faq-title {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 30px;
      text-align: center;
      font-weight: 600;
    }

    .page-8k8-apk__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f0f8ff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #0056b3;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Plus to minus rotation */
    }

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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: 1em;
    }

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

    .page-8k8-apk__call-to-action-section {
      text-align: center;
      background-color: #0056b3;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

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

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

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-8k8-apk__hero-title {
        font-size: 2.4em;
      }
      .page-8k8-apk__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-apk__content-title,
      .page-8k8-apk__faq-title,
      .page-8k8-apk__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-apk__section,
      .page-8k8-apk__faq-section,
      .page-8k8-apk__call-to-action-section {
        padding: 30px 15px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-apk__hero-title {
        font-size: 2em;
      }
      .page-8k8-apk__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-apk__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-apk__content-title,
      .page-8k8-apk__faq-title,
      .page-8k8-apk__cta-title {
        font-size: 1.6em;
      }
      .page-8k8-apk__content-text,
      .page-8k8-apk__feature-description,
      .page-8k8-apk__step-description,
      .page-8k8-apk__faq-answer {
        font-size: 0.95em;
      }

      /* List item responsiveness */
      .page-8k8-apk__feature-list,
      .page-8k8-apk__steps-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-apk__feature-item,
      .page-8k8-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-apk__faq-answer {
        padding: 15px !important;
      }

      .page-8k8-apk__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-8k8-apk__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-apk__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-apk__content-title,
      .page-8k8-apk__faq-title,
      .page-8k8-apk__cta-title {
        font-size: 1.4em;
      }
      .page-8k8-apk__download-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-apk__section,
      .page-8k8-apk__faq-section,
      .page-8k8-apk__call-to-action-section {
        padding: 25px 10px;
      }
    }
  