
    /* Base styles for the page */
    .page-jiliwin-download {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Off-white text for contrast */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
    }

    .page-jiliwin-download__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-jiliwin-download__hero-section {
      text-align: center;
      padding: 80px 20px 40px; /* Adjusted padding-top as body already has offset */
      background-color: #2a2a2a; /* Slightly lighter dark background for hero */
      border-bottom: 5px solid #FFD700; /* Gold accent */
    }

    .page-jiliwin-download__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #FFD700; /* Gold title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-jiliwin-download__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jiliwin-download__download-button {
      display: inline-block;
      background-color: #FFD700; /* Gold button */
      color: #1a1a1a; /* Dark text on gold */
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-jiliwin-download__download-button:hover {
      background-color: #e0b800; /* Darker gold on hover */
      transform: translateY(-2px);
    }

    .page-jiliwin-download__hero-image {
      margin-top: 40px;
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* General Section Styling */
    .page-jiliwin-download__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-jiliwin-download__section:nth-of-type(even) {
      background-color: #222222; /* Alternating dark background */
    }

    .page-jiliwin-download__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #FFD700;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-jiliwin-download__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Feature/List Grid */
    .page-jiliwin-download__feature-grid,
    .page-jiliwin-download__steps-grid,
    .page-jiliwin-download__payment-grid,
    .page-jiliwin-download__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-jiliwin-download__feature-item,
    .page-jiliwin-download__step-item,
    .page-jiliwin-download__payment-item,
    .page-jiliwin-download__provider-item {
      background-color: #333333; /* Darker background for items */
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-jiliwin-download__feature-item:hover,
    .page-jiliwin-download__step-item:hover,
    .page-jiliwin-download__payment-item:hover,
    .page-jiliwin-download__provider-item:hover {
      transform: translateY(-5px);
      background-color: #444444;
    }

    .page-jiliwin-download__item-icon {
      width: 200px; /* Minimum size */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-jiliwin-download__item-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-jiliwin-download__item-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* How to Download Section Specifics */
    .page-jiliwin-download__step-number {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-jiliwin-download__step-image {
      width: 100%;
      max-width: 400px; /* Adjust max-width for step images */
      height: auto;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    /* Supported Devices */
    .page-jiliwin-download__device-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    /* FAQ Section */
    .page-jiliwin-download__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-jiliwin-download__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-jiliwin-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #444444;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #FFD700;
      transition: background-color 0.3s ease;
    }

    .page-jiliwin-download__faq-question:hover {
      background-color: #555555;
    }

    .page-jiliwin-download__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jiliwin-download__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-jiliwin-download__faq-item.active .page-jiliwin-download__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }

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

    .page-jiliwin-download__faq-item.active .page-jiliwin-download__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Call to Action Section */
    .page-jiliwin-download__cta-section {
      background-color: #FFD700; /* Gold background */
      color: #1a1a1a; /* Dark text */
      padding: 60px 20px;
      text-align: center;
    }

    .page-jiliwin-download__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    .page-jiliwin-download__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #333333;
    }

    .page-jiliwin-download__cta-button {
      display: inline-block;
      background-color: #1a1a1a; /* Dark button */
      color: #FFD700; /* Gold text */
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: 2px solid #1a1a1a;
    }

    .page-jiliwin-download__cta-button:hover {
      background-color: #333333;
      transform: translateY(-2px);
      border-color: #333333;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jiliwin-download__hero-section {
        padding: 60px 15px 30px;
      }

      .page-jiliwin-download__hero-title {
        font-size: 2.2em;
      }

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

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

      .page-jiliwin-download__section {
        padding: 40px 15px;
      }

      .page-jiliwin-download__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-jiliwin-download__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-jiliwin-download__feature-grid,
      .page-jiliwin-download__steps-grid,
      .page-jiliwin-download__payment-grid,
      .page-jiliwin-download__provider-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }

      .page-jiliwin-download__feature-item,
      .page-jiliwin-download__step-item,
      .page-jiliwin-download__payment-item,
      .page-jiliwin-download__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-jiliwin-download__feature-grid,
      .page-jiliwin-download__steps-grid,
      .page-jiliwin-download__payment-grid,
      .page-jiliwin-download__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jiliwin-download__item-title {
        font-size: 1.3em;
      }

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

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

      .page-jiliwin-download__faq-answer {
        padding: 0 20px;
      }

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

      .page-jiliwin-download__cta-title {
        font-size: 2em;
      }

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

      .page-jiliwin-download__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
    
    /* Ensure images are always responsive */
    .page-jiliwin-download img {
        max-width: 100%;
        height: auto;
        display: block; /* Removes extra space below image */
        margin: 0 auto; /* Center images */
    }

    /* Image containers for responsiveness */
    .page-jiliwin-download__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .page-jiliwin-download img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-jiliwin-download__image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }
  