
    :root {
      --page-8k8-apk-primary-color: #007bff; /* A vibrant blue for buttons and accents */
      --page-8k8-apk-secondary-color: #ffc107; /* A gold/yellow for highlights */
      --page-8k8-apk-text-color: #333333;
      --page-8k8-apk-background-color: #ffffff;
      --page-8k8-apk-light-background: #f9f9f9;
      --page-8k8-apk-border-color: #e0e0e0;
    }

    /* Base styles for the page content */
    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-apk-text-color);
      background-color: var(--page-8k8-apk-background-color);
      padding-bottom: 40px; /* Space above footer */
      /* Fallback for header offset if not handled by body padding in shared CSS */
      padding-top: var(--header-offset, 122px); /* Default to 122px if --header-offset is not set */
    }

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

    .page-8k8-apk__hero-section {
      background-color: #1a2a6c; /* Dark blue background for hero */
      color: #ffffff;
      text-align: center;
      padding: 60px 0 80px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

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

    .page-8k8-apk__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-8k8-apk-secondary-color);
    }

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

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--page-8k8-apk-secondary-color);
      color: var(--page-8k8-apk-text-color);
      padding: 15px 40px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      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: #e0a800;
      transform: translateY(-3px);
    }

    .page-8k8-apk__section {
      padding: 60px 0;
      background-color: var(--page-8k8-apk-light-background);
      border-bottom: 1px solid var(--page-8k8-apk-border-color);
    }

    .page-8k8-apk__section:nth-of-type(even) {
      background-color: var(--page-8k8-apk-background-color);
    }

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

    .page-8k8-apk__content-block {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-8k8-apk__content-block--reversed {
      flex-direction: row-reverse;
    }

    .page-8k8-apk__text-content,
    .page-8k8-apk__image-wrapper {
      flex: 1;
      min-width: 300px;
      box-sizing: border-box;
    }

    .page-8k8-apk__image-wrapper {
      text-align: center;
    }

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

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

    .page-8k8-apk__list-item {
      background-color: var(--page-8k8-apk-background-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word; /* Ensure long text breaks */
      overflow-wrap: break-word; /* Ensure long text breaks */
    }

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

    .page-8k8-apk__list-item-title {
      color: var(--page-8k8-apk-primary-color);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-8k8-apk__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-apk__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: var(--page-8k8-apk-background-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-apk__step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: var(--page-8k8-apk-primary-color);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4em;
      font-weight: bold;
    }

    .page-8k8-apk__step-content h3 {
      color: var(--page-8k8-apk-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* FAQ Section */
    .page-8k8-apk__faq-section {
      background-color: var(--page-8k8-apk-light-background);
      padding: 60px 0;
    }

    .page-8k8-apk__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      padding: 0;
      list-style: none;
    }

    .page-8k8-apk__faq-item {
      background-color: var(--page-8k8-apk-background-color);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border: 1px solid var(--page-8k8-apk-border-color);
    }

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

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-apk-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-apk-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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;
      background-color: var(--page-8k8-apk-background-color);
    }

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

    /* Call to Action Section */
    .page-8k8-apk__cta-section {
      text-align: center;
      padding: 80px 0;
      background-color: #1a2a6c; /* Dark background */
      color: #ffffff;
    }

    .page-8k8-apk__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-apk-secondary-color);
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-apk__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-apk__hero-description {
        font-size: 1.15em;
      }
      .page-8k8-apk__section-title {
        font-size: 2.2em;
      }
      .page-8k8-apk__cta-title {
        font-size: 2.4em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-apk__container {
        padding: 0 10px;
      }

      .page-8k8-apk__hero-section {
        padding: 40px 0 60px;
      }
      .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: 1.1em;
      }

      .page-8k8-apk__section {
        padding: 40px 0;
      }
      .page-8k8-apk__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-apk__content-block {
        flex-direction: column;
        gap: 20px;
      }

      .page-8k8-apk__content-block--reversed {
        flex-direction: column; /* Reset to default for mobile */
      }

      .page-8k8-apk__text-content,
      .page-8k8-apk__image-wrapper {
        min-width: unset;
        width: 100%; /* Force full width for mobile */
      }

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

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

      .page-8k8-apk__list {
        grid-template-columns: 1fr; /* Single column for list items */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Remove padding from list container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-apk__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-apk__steps-list {
        gap: 20px;
      }

      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-8k8-apk__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-apk__faq-list {
        margin-top: 30px;
      }

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

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

      .page-8k8-apk__faq-answer {
        padding: 0 20px; /* Adjust padding for mobile */
      }
      .page-8k8-apk__faq-item.active .page-8k8-apk__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for mobile */
      }

      .page-8k8-apk__cta-section {
        padding: 60px 0;
      }
      .page-8k8-apk__cta-title {
        font-size: 2em;
      }
      .page-8k8-apk__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-apk__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-apk__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-apk__download-button {
        font-size: 1em;
        padding: 10px 25px;
      }
      .page-8k8-apk__section-title {
        font-size: 1.6em;
      }
      .page-8k8-apk__cta-title {
        font-size: 1.8em;
      }
    }
  