
    /* Base styles for the page */
    .page-jilihot-download {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Adjust as per fixed header requirement */
    }

    .page-jilihot-download__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-jilihot-download__hero-section {
      background-color: #007bff; /* A vibrant blue, ensure good contrast with text */
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }

    .page-jilihot-download__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtle background image */
      z-index: 0;
    }

    .page-jilihot-download__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-jilihot-download__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
      color: #fff; /* Ensure contrast */
    }

    .page-jilihot-download__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e9ecef; /* Ensure contrast */
    }

    .page-jilihot-download__download-button {
      display: inline-block;
      background-color: #ffc107; /* Bright yellow, ensure contrast */
      color: #333; /* Dark text for contrast */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Section Styling */
    .page-jilihot-download__section {
      background-color: #ffffff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-jilihot-download__section-title {
      font-size: 2em;
      color: #0056b3; /* Darker blue for headings */
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;
    }

    .page-jilihot-download__section-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-jilihot-download__section-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      text-align: left;
    }

    .page-jilihot-download__section-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      text-align: center;
    }

    .page-jilihot-download__section-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Benefits List */
    .page-jilihot-download__benefits-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-jilihot-download__benefits-item {
      background-color: #e6f2ff; /* Light blue background */
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
      color: #003366; /* Dark blue text */
    }

    .page-jilihot-download__benefits-item strong {
      display: block;
      font-size: 1.2em;
      margin-bottom: 10px;
      color: #0056b3;
    }

    /* How-to Steps */
    .page-jilihot-download__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      counter-reset: step-counter;
    }

    .page-jilihot-download__steps-item {
      background-color: #f0f8ff; /* Very light blue */
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 60px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jilihot-download__steps-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 20px;
      top: 20px;
      background-color: #007bff;
      color: #ffffff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-jilihot-download__steps-item strong {
      display: block;
      font-size: 1.2em;
      margin-bottom: 5px;
      color: #0056b3;
    }

    /* Game Categories Grid */
    .page-jilihot-download__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-jilihot-download__game-card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-download__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-download__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-jilihot-download__game-title {
      font-size: 1.3em;
      color: #0056b3;
      padding: 15px;
      margin: 0;
      font-weight: 600;
    }

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

    .page-jilihot-download__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jilihot-download__faq-item {
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-jilihot-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e9ecef;
      color: #333;
      font-size: 1.1em;
      font-weight: 600;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-jilihot-download__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #007bff;
      transition: transform 0.3s ease;
    }

    .page-jilihot-download__faq-item.active .page-jilihot-download__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
    }

    .page-jilihot-download__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fdfdfd;
      color: #555;
    }

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

    /* Call to Action Section */
    .page-jilihot-download__cta-section {
      background-color: #007bff;
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-jilihot-download__cta-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.1; /* Subtle background image */
      z-index: 0;
    }

    .page-jilihot-download__cta-content {
      position: relative;
      z-index: 1;
    }

    .page-jilihot-download__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
    }

    .page-jilihot-download__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e9ecef;
    }

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

      .page-jilihot-download__hero-description {
        font-size: 1em;
      }

      .page-jilihot-download__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-jilihot-download__section-content {
        flex-direction: column;
        text-align: center;
      }

      .page-jilihot-download__section-text {
        min-width: unset;
        width: 100%;
      }

      .page-jilihot-download__section-image-wrapper {
        min-width: unset;
        width: 100%;
      }

      /* Responsive list items */
      .page-jilihot-download__benefits-list,
      .page-jilihot-download__steps-list,
      .page-jilihot-download__game-categories {
        grid-template-columns: 1fr; /* Single column for mobile */
      }

      .page-jilihot-download__benefits-item,
      .page-jilihot-download__steps-item,
      .page-jilihot-download__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px; /* Adjust for step counter */
        padding-right: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jilihot-download__benefits-list,
      .page-jilihot-download__steps-list,
      .page-jilihot-download__game-categories {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jilihot-download__steps-item::before {
        left: 10px; /* Adjust position for mobile */
      }

      .page-jilihot-download__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-jilihot-download__faq-question h3 {
        font-size: 1em;
      }

      .page-jilihot-download__faq-answer {
        padding: 0 15px;
      }

      .page-jilihot-download__faq-item.active .page-jilihot-download__faq-answer {
        padding: 15px !important;
      }

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

      .page-jilihot-download__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-download__hero-section {
        padding: 60px 15px;
      }

      .page-jilihot-download__section {
        padding: 30px 15px;
      }

      .page-jilihot-download__cta-section {
        padding: 40px 15px;
      }
    }
  