
    :root {
      --page-8k8-2-primary-color: #007bff; /* A vibrant blue for actions */
      --page-8k8-2-secondary-color: #6c757d; /* A subtle grey for secondary elements */
      --page-8k8-2-accent-color: #ffc107; /* A bright yellow for highlights */
      --page-8k8-2-background-light: #f8f9fa; /* Light background */
      --page-8k8-2-background-dark: #343a40; /* Dark background */
      --page-8k8-2-text-light: #ffffff; /* Light text on dark background */
      --page-8k8-2-text-dark: #212529; /* Dark text on light background */
      --page-8k8-2-border-color: #dee2e6;
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-2-text-dark);
      background-color: var(--page-8k8-2-background-light);
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

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

    .page-8k8-2__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-2-primary-color), #0056b3);
      color: var(--page-8k8-2-text-light);
      text-align: center;
      padding: 80px 20px;
      margin-bottom: 40px;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-2__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.05);
      transform: rotate(30deg);
      z-index: 0;
    }

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

    .page-8k8-2__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
      color: var(--page-8k8-2-text-light);
    }

    .page-8k8-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-2__download-button {
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-text-dark);
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it looks like a button */
      display: inline-block;
    }

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

    .page-8k8-2__image-container {
      margin-top: 40px;
    }

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

    .page-8k8-2__section {
      background-color: var(--page-8k8-2-text-light);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

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

    .page-8k8-2__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-8k8-2-accent-color);
      margin: 15px auto 0;
      border-radius: 2px;
    }

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

    .page-8k8-2__feature-card {
      background-color: var(--page-8k8-2-background-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-2__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-2__feature-icon {
      max-width: 250px; /* Increased size */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-2__feature-title {
      font-size: 1.5em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-2__feature-description {
      font-size: 1em;
      color: var(--page-8k8-2-secondary-color);
    }

    .page-8k8-2__steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-8k8-2__step-item {
      display: flex;
      align-items: flex-start;
      background-color: var(--page-8k8-2-background-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-2__step-content h3 {
      font-size: 1.3em;
      color: var(--page-8k8-2-text-dark);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-2__step-content p {
      font-size: 0.95em;
      color: var(--page-8k8-2-secondary-color);
    }

    .page-8k8-2__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-2__provider-logo {
      max-width: 180px; /* Increased size */
      height: auto;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-8k8-2__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* FAQ Section */
    .page-8k8-2__faq-section {
      background-color: var(--page-8k8-2-background-dark);
      color: var(--page-8k8-2-text-light);
      padding: 60px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-2__faq-title {
      font-size: 2.5em;
      color: var(--page-8k8-2-accent-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-2__faq-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-8k8-2-primary-color);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-8k8-2__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-2__faq-item {
      background-color: #495057;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-2__faq-question:hover {
      background-color: #6c757d;
    }

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-2-text-light);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-2-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1; /* Adjust line height to prevent extra space */
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-2__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;
      color: #e9ecef;
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-2__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-2__download-button {
        font-size: 1em;
        padding: 12px 25px;
      }

      .page-8k8-2__section-title,
      .page-8k8-2__faq-title {
        font-size: 2em;
      }

      .page-8k8-2__content-grid {
        grid-template-columns: 1fr;
      }

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

      .page-8k8-2__steps-list,
      .page-8k8-2__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

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

      .page-8k8-2__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-2__hero-image,
      .page-8k8-2__feature-icon,
      .page-8k8-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-2__section-title,
      .page-8k8-2__faq-title {
        font-size: 1.8em;
      }
    }
  