
    /* Base styles for the page */
    .page-8k8-17-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Adhering to fixed nav bar spacing rule */
    }

    .page-8k8-17-apk__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-17-apk__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

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

    .page-8k8-17-apk__title {
      font-size: 2.5em;
      color: #2980b9;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-17-apk__subtitle {
      font-size: 1.8em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-17-apk__section-title {
      font-size: 2em;
      color: #2980b9;
      margin-bottom: 25px;
      text-align: center;
    }

    .page-8k8-17-apk__section-title--light {
      color: #ecf0f1;
    }

    .page-8k8-17-apk__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      text-align: justify;
    }

    .page-8k8-17-apk__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #e74c3c;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-17-apk__button:hover {
      background-color: #c0392b;
    }

    .page-8k8-17-apk__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-17-apk__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      display: block; /* Ensures proper spacing */
      margin: 0 auto; /* Centers the image */
    }

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

    .page-8k8-17-apk__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
      border-left: 5px solid #2980b9;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-17-apk__feature-title {
      font-size: 1.4em;
      color: #2980b9;
      margin-bottom: 10px;
    }

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

    /* Download Steps */
    .page-8k8-17-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%; /* For responsive list container */
      max-width: 100%; /* For responsive list container */
      box-sizing: border-box; /* For responsive list container */
    }

    .page-8k8-17-apk__step-item {
      background-color: #e8f4f8;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-17-apk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #2980b9;
      background-color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-8k8-17-apk__step-content h3 {
      font-size: 1.3em;
      color: #2c3e50;
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-8k8-17-apk__step-content p {
      margin: 0;
      color: #555;
    }

    /* Game Providers */
    .page-8k8-17-apk__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-17-apk__provider-item {
      background-color: #f4f4f4;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-17-apk__provider-logo {
      max-width: 120px; /* Adjust based on desired size, but min 200x200 overall image */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-17-apk__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-8k8-17-apk__faq-section {
      padding: 40px 20px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 20px;
    }

    .page-8k8-17-apk__faq-title {
      font-size: 2em;
      color: #2980b9;
      margin-bottom: 30px;
      text-align: center;
    }

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

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

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

    .page-8k8-17-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-8k8-17-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #2980b9;
      margin-left: 10px;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

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

    .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;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-17-apk__title {
        font-size: 2em;
      }

      .page-8k8-17-apk__subtitle {
        font-size: 1.4em;
      }

      .page-8k8-17-apk__section-title {
        font-size: 1.7em;
      }

      .page-8k8-17-apk__section {
        padding: 30px 15px;
      }

      .page-8k8-17-apk__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-17-apk__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-17-apk__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Ensure no extra padding from container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-17-apk__step-item {
        flex-direction: column;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-17-apk__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-17-apk__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-17-apk__faq-section {
        padding: 30px 15px;
      }

      .page-8k8-17-apk__faq-question {
        padding: 12px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-17-apk__faq-toggle {
        font-size: 1.2em;
      }

      .page-8k8-17-apk__faq-answer {
        padding: 15px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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