
    /* Page-specific CSS for jilihot-apk */
    .page-jilihot-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-jilihot-apk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jilihot-apk__hero-section {
      background: linear-gradient(135deg, #FF6B6B, #FFD700);
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    .page-jilihot-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-apk__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jilihot-apk__button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-jilihot-apk__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-jilihot-apk__image-container {
      margin-top: 30px;
      overflow: hidden;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-jilihot-apk__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-jilihot-apk__heading {
      font-size: 2em;
      color: #333;
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .page-jilihot-apk__subheading {
      font-size: 1.5em;
      color: #555;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-jilihot-apk__paragraph {
      margin-bottom: 15px;
      color: #444;
    }

    .page-jilihot-apk__feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: center;
    }

    .page-jilihot-apk__feature-item {
      background-color: #f0f8ff;
      border: 1px solid #e0f0ff;
      border-radius: 8px;
      padding: 20px;
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-apk__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-jilihot-apk__feature-title {
      font-size: 1.2em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jilihot-apk__step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: step-counter;
    }

    .page-jilihot-apk__step-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    }

    .page-jilihot-apk__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #FF6B6B;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-jilihot-apk__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jilihot-apk__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-jilihot-apk__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-jilihot-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jilihot-apk__faq-question:hover {
      background-color: #f5f5f5;
      border-radius: 4px;
    }

    .page-jilihot-apk__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-jilihot-apk__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-jilihot-apk__faq-item.active .page-jilihot-apk__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-jilihot-apk__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: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jilihot-apk__hero-title {
        font-size: 2em;
      }

      .page-jilihot-apk__hero-subtitle {
        font-size: 1em;
      }

      .page-jilihot-apk__heading {
        font-size: 1.8em;
      }

      .page-jilihot-apk__subheading {
        font-size: 1.3em;
      }

      .page-jilihot-apk__feature-item {
        flex: 1 1 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-jilihot-apk__feature-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-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-jilihot-apk__step-item::before {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-jilihot-apk__faq-question h3 {
        font-size: 1em;
      }
      .page-jilihot-apk__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-apk__section {
        padding: 20px 15px;
      }
      .page-jilihot-apk__hero-section {
        padding: 40px 15px 30px;
      }
      .page-jilihot-apk__hero-title {
        font-size: 1.8em;
      }
      .page-jilihot-apk__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-jilihot-apk__heading {
        font-size: 1.5em;
      }
    }
  