
    :root {
      --primary-color: #e44d26; /* A vibrant orange for highlights */
      --secondary-color: #333;
      --text-color: #333;
      --light-bg: #f9f9f9;
      --dark-bg: #222;
      --white-text: #fff;
      --border-color: #ddd;
    }

    .page-8k8-apps {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--light-bg);
      padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    }

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

    .page-8k8-apps__section--dark {
      background-color: var(--dark-bg);
      color: var(--white-text);
    }

    .page-8k8-apps__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-apps__section--dark .page-8k8-apps__section-title {
      color: var(--white-text);
    }

    .page-8k8-apps__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
      min-height: 500px;
      box-sizing: border-box;
    }

    .page-8k8-apps__hero-content {
      max-width: 800px;
      margin-bottom: 40px;
    }

    .page-8k8-apps__hero-title {
      font-size: 3.5em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 800;
    }

    .page-8k8-apps__hero-description {
      font-size: 1.3em;
      color: var(--text-color);
      margin-bottom: 30px;
    }

    .page-8k8-apps__download-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--white-text);
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-apps__hero-image {
      max-width: 600px;
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      margin-top: 30px;
      box-sizing: border-box;
    }

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

    .page-8k8-apps__info-card {
      background-color: var(--white-text);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-apps__info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-apps__info-card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-apps__info-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

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

    .page-8k8-apps__how-to-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-apps__how-to-item {
      background-color: var(--white-text);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-8k8-apps__how-to-number {
      background-color: var(--primary-color);
      color: var(--white-text);
      width: 45px;
      height: 45px;
      min-width: 45px;
      min-height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
    }

    .page-8k8-apps__how-to-content h3 {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-apps__how-to-content p {
      margin-bottom: 0;
      color: var(--secondary-color);
    }

    .page-8k8-apps__app-showcase {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 40px;
    }

    .page-8k8-apps__app-feature {
      display: flex;
      align-items: center;
      gap: 40px;
      background-color: var(--white-text);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-8k8-apps__app-feature:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-apps__app-feature-image {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-apps__app-feature-text {
      flex: 2;
    }

    .page-8k8-apps__app-feature-text h3 {
      font-size: 2em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 15px;
    }

    .page-8k8-apps__app-feature-text p {
      font-size: 1.1em;
      color: var(--secondary-color);
    }

    .page-8k8-apps__faq-section {
      background-color: var(--white-text);
      padding: 60px 20px;
      margin: 0 auto;
      max-width: 900px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-8k8-apps__faq-item {
      border-bottom: 1px solid var(--border-color);
      padding: 15px 0;
      box-sizing: border-box;
    }

    .page-8k8-apps__faq-item:last-child {
      border-bottom: none;
    }

    .page-8k8-apps__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-apps__faq-question:hover {
      background-color: #f0f0f0;
      border-radius: 5px;
    }

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

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

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

    .page-8k8-apps__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.3s ease;
      color: var(--text-color);
      box-sizing: border-box;
    }

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

    .page-8k8-apps__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--primary-color);
      color: var(--white-text);
      box-sizing: border-box;
    }

    .page-8k8-apps__cta-section-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-apps__cta-section-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-apps__hero-title {
        font-size: 3em;
      }
      .page-8k8-apps__section-title {
        font-size: 2em;
      }
      .page-8k8-apps__app-feature {
        flex-direction: column;
      }
      .page-8k8-apps__app-feature:nth-child(even) {
        flex-direction: column;
      }
      .page-8k8-apps__app-feature-image {
        min-width: unset;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-apps__hero-section {
        padding: 40px 15px;
      }
      .page-8k8-apps__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-apps__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-apps__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-apps__section {
        padding: 30px 15px;
      }
      .page-8k8-apps__section-title {
        font-size: 1.8em;
      }
      .page-8k8-apps__info-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-apps__how-to-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-8k8-apps__how-to-number {
        margin-bottom: 15px;
      }
      .page-8k8-apps__how-to-content h3 {
        font-size: 1.3em;
      }
      .page-8k8-apps__app-feature-text h3 {
        font-size: 1.8em;
      }
      .page-8k8-apps__app-feature-text p {
        font-size: 1em;
      }
      .page-8k8-apps__faq-section {
        padding: 40px 15px;
      }
      .page-8k8-apps__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-apps__faq-answer {
        padding: 0 10px;
      }
      .page-8k8-apps__faq-item.active .page-8k8-apps__faq-answer {
        padding: 15px 10px !important;
      }
      .page-8k8-apps__cta-section-title {
        font-size: 2.2em;
      }
      .page-8k8-apps__cta-section-description {
        font-size: 1.1em;
      }

      /* Image responsiveness for mobile */
      .page-8k8-apps__hero-image,
      .page-8k8-apps__info-card-icon,
      .page-8k8-apps__app-feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      /* List item responsiveness for mobile */
      .page-8k8-apps__info-grid,
      .page-8k8-apps__how-to-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-apps__info-card,
      .page-8k8-apps__how-to-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-apps__hero-title {
        font-size: 2em;
      }
      .page-8k8-apps__hero-description {
        font-size: 1em;
      }
      .page-8k8-apps__download-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-8k8-apps__section-title {
        font-size: 1.6em;
      }
      .page-8k8-apps__app-feature-text h3 {
        font-size: 1.5em;
      }
      .page-8k8-apps__cta-section-title {
        font-size: 1.8em;
      }
      .page-8k8-apps__cta-section-description {
        font-size: 1em;
      }
    }
  