
    /* Page-specific CSS styles */
    .page-8k8-com-download {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

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

    .page-8k8-com-download__hero-section {
      background: linear-gradient(135deg, #001f3f, #007bff);
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
      padding-top: calc(80px + 10px); /* Small offset for fixed header */
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 40px;
    }
    
    .page-8k8-com-download__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:pattern:1920x1080:abstract,pattern,geometric]');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }

    .page-8k8-com-download__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-download__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-8k8-com-download__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-download__download-button {
      display: inline-block;
      background-color: #ffc107; /* Bright yellow for visibility */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

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

    .page-8k8-com-download__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-download__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      word-wrap: break-word;
    }

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

    .page-8k8-com-download__step-item {
      background-color: #e0f7fa;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-com-download__step-number {
      font-size: 2em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-com-download__step-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-com-download__step-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
    }

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

    .page-8k8-com-download__feature-card {
      background-color: #f0f8ff;
      border-left: 5px solid #007bff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-download__feature-title {
      font-size: 1.4em;
      color: #001f3f;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-com-download__feature-description {
      font-size: 0.95em;
      color: #555;
      word-wrap: break-word;
    }

    .page-8k8-com-download__image-container {
      text-align: center;
      margin: 30px 0;
    }

    .page-8k8-com-download__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      object-fit: cover;
      display: block; /* Ensures it takes up full width of container */
      margin: 0 auto; /* Center image */
    }
    
    .page-8k8-com-download__image-caption {
      margin-top: 15px;
      font-size: 0.9em;
      color: #777;
    }

    .page-8k8-com-download__app-providers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-8k8-com-download__provider-logo {
        width: 150px; /* Adjust as needed */
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .page-8k8-com-download__provider-logo:hover {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .page-8k8-com-download__faq-section {
      padding: 40px 20px;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-com-download__faq-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      word-wrap: break-word;
    }

    .page-8k8-com-download__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #001f3f;
      cursor: pointer;
      background-color: #e3f2fd;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-download__faq-question:hover {
      background-color: #d1ecf1;
    }

    .page-8k8-com-download__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      word-wrap: break-word;
    }

    .page-8k8-com-download__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-download__faq-item.active .page-8k8-com-download__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for active */
    }

    .page-8k8-com-download__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
      background-color: #fff;
      font-size: 1em;
      word-wrap: break-word;
    }

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

    /* Call to Action Section */
    .page-8k8-com-download__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #001f3f;
      color: #fff;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-8k8-com-download__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      word-wrap: break-word;
    }

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

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

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-download__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-download__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-download__section-title,
      .page-8k8-com-download__faq-title,
      .page-8k8-com-download__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-download__hero-section {
        padding: 60px 15px 40px;
        padding-top: calc(60px + 10px); /* Small offset for fixed header */
      }
      .page-8k8-com-download__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-download__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-download__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-com-download__section {
        padding: 30px 15px;
      }
      .page-8k8-com-download__section-title,
      .page-8k8-com-download__faq-title,
      .page-8k8-com-download__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-download__steps-grid,
      .page-8k8-com-download__features-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-download__step-item,
      .page-8k8-com-download__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-download__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-8k8-com-download__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-com-download__faq-item.active .page-8k8-com-download__faq-answer {
        padding: 15px !important;
      }

      .page-8k8-com-download__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-com-download__cta-description {
        font-size: 1.1em;
      }
      .page-8k8-com-download__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }
      .page-8k8-com-download__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-8k8-com-download__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-download__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-download__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-download__download-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-8k8-com-download__section-title,
      .page-8k8-com-download__faq-title,
      .page-8k8-com-download__cta-title {
        font-size: 1.5em;
      }
      .page-8k8-com-download__step-title,
      .page-8k8-com-download__feature-title {
        font-size: 1.2em;
      }
      .page-8k8-com-download__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-download__cta-description {
        font-size: 1em;
      }
      .page-8k8-com-download__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
    }
  