
    /* Base styles for the page */
    .page-8k8-com-download-for-android {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 40px; /* Added for general spacing before footer */
      /* Default padding-top in case shared.css doesn't set body padding-top */
      /* If shared.css sets body { padding-top: var(--header-offset); }, this should be removed or set to a small value */
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined */
    }

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

    .page-8k8-com-download-for-android__section {
      padding: 60px 0;
      text-align: center;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-download-for-android__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-com-download-for-android__section--dark .page-8k8-com-download-for-android__heading-2,
    .page-8k8-com-download-for-android__section--dark .page-8k8-com-download-for-android__paragraph {
      color: #ecf0f1;
    }

    .page-8k8-com-download-for-android__heading-1 {
      font-size: 3.2em;
      color: #e74c3c; /* A vibrant red for emphasis */
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-com-download-for-android__heading-2 {
      font-size: 2.5em;
      color: #34495e;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-com-download-for-android__heading-3 {
      font-size: 1.8em;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .page-8k8-com-download-for-android__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Hero Section */
    .page-8k8-com-download-for-android__hero-section {
      background: linear-gradient(135deg, #e74c3c, #c0392b);
      color: #ffffff;
      padding: 80px 0;
      padding-top: 10px; /* Minimal top padding, assuming body has header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-download-for-android__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

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

    .page-8k8-com-download-for-android__hero-title {
      font-size: 4em;
      margin-bottom: 15px;
      font-weight: 700;
      line-height: 1.1;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-download-for-android__hero-subtitle {
      font-size: 1.6em;
      margin-bottom: 30px;
      font-weight: 300;
      color: #f0f0f0;
    }

    .page-8k8-com-download-for-android__download-button {
      display: inline-block;
      background-color: #27ae60; /* A strong green for action */
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.4em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-download-for-android__download-button:hover {
      background-color: #2ecc71;
      transform: translateY(-3px);
    }

    .page-8k8-com-download-for-android__app-image {
      max-width: 500px;
      height: auto;
      margin-top: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    /* Features Section */
    .page-8k8-com-download-for-android__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-download-for-android__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px 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-com-download-for-android__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-download-for-android__feature-icon {
      width: 250px; /* Min size */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    .page-8k8-com-download-for-android__feature-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-8k8-com-download-for-android__feature-description {
      color: #666;
    }

    /* How to Download Section */
    .page-8k8-com-download-for-android__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-com-download-for-android__step-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-left: 5px solid #e74c3c;
      border-radius: 8px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* List item responsive */
      width: 100%; /* List item responsive */
      max-width: 100%; /* List item responsive */
      margin-left: 0; /* List item responsive */
      margin-right: 0; /* List item responsive */
    }

    .page-8k8-com-download-for-android__step-number {
      font-size: 2.2em;
      font-weight: bold;
      color: #e74c3c;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-com-download-for-android__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-download-for-android__step-title {
      font-size: 1.4em;
      color: #34495e;
      margin-bottom: 8px;
      word-wrap: break-word; /* List item text wrap */
      overflow-wrap: break-word; /* List item text wrap */
    }

    .page-8k8-com-download-for-android__step-description {
      font-size: 1em;
      color: #666;
      word-wrap: break-word; /* List item text wrap */
      overflow-wrap: break-word; /* List item text wrap */
    }

    /* Why Choose 8k8 Section */
    .page-8k8-com-download-for-android__why-choose-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-download-for-android__why-choose-item {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* List item responsive */
      width: 100%; /* List item responsive */
      max-width: 100%; /* List item responsive */
      margin-left: 0; /* List item responsive */
      margin-right: 0; /* List item responsive */
    }

    .page-8k8-com-download-for-for-android__why-choose-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-download-for-android__why-choose-heading {
      font-size: 1.3em;
      color: #e74c3c;
      margin-bottom: 10px;
      word-wrap: break-word; /* List item text wrap */
      overflow-wrap: break-word; /* List item text wrap */
    }

    .page-8k8-com-download-for-android__why-choose-text {
      color: #666;
      word-wrap: break-word; /* List item text wrap */
      overflow-wrap: break-word; /* List item text wrap */
    }

    /* FAQ Section */
    .page-8k8-com-download-for-android__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-download-for-android__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* List item responsive */
      width: 100%; /* List item responsive */
      max-width: 100%; /* List item responsive */
      margin-left: 0; /* List item responsive */
      margin-right: 0; /* List item responsive */
    }

    .page-8k8-com-download-for-android__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f0f3f6;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #34495e;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-download-for-android__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-download-for-android__faq-question:hover {
      background-color: #e2e6eb;
    }

    .page-8k8-com-download-for-android__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-download-for-android__faq-item.active .page-8k8-com-download-for-android__faq-toggle {
      transform: rotate(45deg); /* Plus to X / Minus */
      color: #27ae60;
    }

    .page-8k8-com-download-for-android__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: #555;
      font-size: 1em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

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

    /* Call to Action Section */
    .page-8k8-com-download-for-android__cta-section {
      background-color: #34495e;
      color: #ffffff;
      padding: 80px 0;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-download-for-android__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffffff;
      font-weight: bold;
    }

    .page-8k8-com-download-for-android__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #f0f0f0;
    }

    /* General Image Styling */
    .page-8k8-com-download-for-android img {
      max-width: 100%;
      height: auto;
      display: block; /* Prevents extra space below images */
      margin: 0 auto; /* Center images */
      box-sizing: border-box;
      border-radius: 8px; /* Consistent rounded corners for images */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-download-for-android__heading-1 {
        font-size: 2.5em;
      }

      .page-8k8-com-download-for-android__heading-2 {
        font-size: 2em;
      }

      .page-8k8-com-download-for-android__hero-title {
        font-size: 2.8em;
      }

      .page-8k8-com-download-for-android__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-download-for-android__download-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      .page-8k8-com-download-for-android__section {
        padding: 40px 0;
      }

      .page-8k8-com-download-for-android__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-download-for-android__feature-item {
        padding: 20px;
      }

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

      .page-8k8-com-download-for-android__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-8k8-com-download-for-android__why-choose-list {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-download-for-android__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-download-for-android__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for mobile */
      }

      .page-8k8-com-download-for-android__cta-title {
        font-size: 2em;
      }

      .page-8k8-com-download-for-android__cta-description {
        font-size: 1em;
      }

      /* List item specific responsive requirements */
      .page-8k8-com-download-for-android__steps-list,
      .page-8k8-com-download-for-android__why-choose-list,
      .page-8k8-com-download-for-android__faq-list {
        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-com-download-for-android__step-item,
      .page-8k8-com-download-for-android__why-choose-item,
      .page-8k8-com-download-for-android__faq-item,
      .page-8k8-com-download-for-android__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-download-for-android__step-title,
      .page-8k8-com-download-for-android__step-description,
      .page-8k8-com-download-for-android__why-choose-heading,
      .page-8k8-com-download-for-android__why-choose-text,
      .page-8k8-com-download-for-android__faq-question h3,
      .page-8k8-com-download-for-android__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive adjustments */
      .page-8k8-com-download-for-android img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  