
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #FFA500; /* Orange */
      --dark-background: #1a1a2e;
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --border-color: #33334d;
      --button-hover-background: #e0b800;
      --faq-hover-background: #2a2a4a;
    }

    .page-jilihot-app-download {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header spacing */
    }

    .page-jilihot-app-download__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-jilihot-app-download__hero-section {
      background: linear-gradient(135deg, var(--dark-background), #2a003a);
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
      padding-bottom: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-jilihot-app-download__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-jilihot-app-download__hero-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-jilihot-app-download__hero-subtitle {
      font-size: 1.2em;
      color: var(--gray-text);
      margin-bottom: 30px;
    }

    .page-jilihot-app-download__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--dark-background);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jilihot-app-download__button:hover {
      background-color: var(--button-hover-background);
      transform: translateY(-2px);
    }

    .page-jilihot-app-download__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

    .page-jilihot-app-download__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jilihot-app-download__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-jilihot-app-download__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jilihot-app-download__card {
      background-color: #2b2b40;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-app-download__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-jilihot-app-download__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-jilihot-app-download__card-text {
      color: var(--gray-text);
      font-size: 1em;
    }

    .page-jilihot-app-download__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 25px;
    }

    .page-jilihot-app-download__image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      object-fit: cover;
    }

    .page-jilihot-app-download__list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .page-jilihot-app-download__list-item {
      background-color: #2b2b40;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      color: var(--light-text);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jilihot-app-download__list-item::before {
      content: '✓';
      color: var(--primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-jilihot-app-download__step-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jilihot-app-download__step-card {
      background-color: #2b2b40;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid var(--border-color);
    }

    .page-jilihot-app-download__step-number {
      font-size: 2.5em;
      color: var(--secondary-color);
      font-weight: bold;
      margin-bottom: 15px;
      background: #3a3a5a;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
    }

    .page-jilihot-app-download__step-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-jilihot-app-download__step-description {
      color: var(--gray-text);
      font-size: 0.95em;
    }

    .page-jilihot-app-download__faq-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
      text-align: center;
    }

    .page-jilihot-app-download__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-jilihot-app-download__faq-item {
      background-color: #2b2b40;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

    .page-jilihot-app-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: var(--light-text);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jilihot-app-download__faq-question:hover {
      background-color: var(--faq-hover-background);
    }

    .page-jilihot-app-download__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-jilihot-app-download__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      color: var(--secondary-color);
    }

    .page-jilihot-app-download__faq-item.active .page-jilihot-app-download__faq-toggle {
      transform: rotate(45deg);
    }

    .page-jilihot-app-download__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-jilihot-app-download__final-cta-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #2a003a;
      border-top: 1px solid var(--border-color);
    }

    .page-jilihot-app-download__final-cta-text {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jilihot-app-download__hero-title {
        font-size: 2.5em;
      }
      .page-jilihot-app-download__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-jilihot-app-download__hero-title {
        font-size: 2em;
      }
      .page-jilihot-app-download__hero-subtitle {
        font-size: 1em;
      }
      .page-jilihot-app-download__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-jilihot-app-download__section {
        padding: 30px 15px;
      }
      .page-jilihot-app-download__section-title {
        font-size: 1.8em;
      }
      .page-jilihot-app-download__card {
        padding: 25px;
      }
      .page-jilihot-app-download__card-title {
        font-size: 1.3em;
      }
      .page-jilihot-app-download__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 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;
      }
      .page-jilihot-app-download__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jilihot-app-download__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-jilihot-app-download__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jilihot-app-download__faq-toggle {
        font-size: 1.5em;
      }
      .page-jilihot-app-download__faq-answer {
        padding: 15px 20px !important;
      }
      .page-jilihot-app-download__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-jilihot-app-download__image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jilihot-app-download__final-cta-text {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-app-download__hero-title {
        font-size: 1.8em;
      }
      .page-jilihot-app-download__section-title {
        font-size: 1.6em;
      }
      .page-jilihot-app-download__faq-question {
        font-size: 0.95em;
      }
      .page-jilihot-app-download__faq-question h3 {
        font-size: 1em;
      }
      .page-jilihot-app-download__faq-answer {
        font-size: 0.9em;
      }
    }
  