
    /* CSS styles for the 50jili withdrawal page */
    .page-50jili-withdrawal {
      font-family: 'Arial', sans-serif;
      color: #333; /* Good contrast with light backgrounds */
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-50jili-withdrawal__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-50jili-withdrawal__hero-section {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Small decorative top padding as body already has offset */
      margin-bottom: 40px;
      box-sizing: border-box;
    }

    .page-50jili-withdrawal__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-50jili-withdrawal__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-50jili-withdrawal__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-50jili-withdrawal__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #fff; /* Ensure good contrast */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-50jili-withdrawal__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee; /* Ensure good contrast */
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-50jili-withdrawal__cta-button {
      display: inline-block;
      background-color: #007bff; /* Vibrant blue */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Indicate it's clickable */
      border: none; /* Make it a button style */
      font-size: 1.1em;
    }

    .page-50jili-withdrawal__cta-button:hover {
      background-color: #0056b3;
    }

    .page-50jili-withdrawal__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-50jili-withdrawal__section-title {
      font-size: 2.2em;
      color: #2c3e50; /* Darker color for titles */
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-50jili-withdrawal__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #007bff;
      border-radius: 2px;
    }

    .page-50jili-withdrawal__content-text {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-50jili-withdrawal__step-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .page-50jili-withdrawal__step-item {
      background-color: #eaf6ff; /* Light blue background for steps */
      border-left: 5px solid #007bff;
      padding: 25px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .page-50jili-withdrawal__step-item:hover {
      transform: translateY(-5px);
    }

    .page-50jili-withdrawal__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-50jili-withdrawal__step-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-50jili-withdrawal__step-description {
      color: #555;
      font-size: 1em;
    }

    .page-50jili-withdrawal__payment-methods {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
    }

    .page-50jili-withdrawal__method-card {
      background-color: #f0f8ff; /* Very light blue */
      border: 1px solid #cceeff;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      flex: 1;
      min-width: 180px;
      max-width: calc(25% - 20px); /* Four items per row */
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-50jili-withdrawal__method-icon {
      width: 100%; /* Will be overridden by mobile specific rules, but ensures responsiveness */
      height: auto;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-50jili-withdrawal__method-name {
      font-weight: bold;
      color: #2c3e50;
      font-size: 1.1em;
    }

    .page-50jili-withdrawal__tips-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

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

    .page-50jili-withdrawal__tip-icon {
      font-size: 1.5em;
      color: #007bff;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-50jili-withdrawal__tip-text {
      color: #555;
      font-size: 1em;
    }

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

    .page-50jili-withdrawal__faq-title {
      font-size: 2.2em;
      color: #2c3e50;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-50jili-withdrawal__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #007bff;
      border-radius: 2px;
    }

    .page-50jili-withdrawal__faq-list {
      list-style: none;
      padding: 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-50jili-withdrawal__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-50jili-withdrawal__faq-question {
      background-color: #f5f5f5;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-50jili-withdrawal__faq-question:hover {
      background-color: #eee;
    }

    .page-50jili-withdrawal__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-50jili-withdrawal__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.4s ease;
      background-color: #fff;
      color: #555;
    }

    .page-50jili-withdrawal__faq-item.active .page-50jili-withdrawal__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-50jili-withdrawal__faq-item.active .page-50jili-withdrawal__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - if preferred) */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-50jili-withdrawal__hero-title {
        font-size: 2.5em;
      }
      .page-50jili-withdrawal__section-title,
      .page-50jili-withdrawal__faq-title {
        font-size: 2em;
      }
      .page-50jili-withdrawal__step-item {
        max-width: calc(50% - 20px); /* Two items per row */
      }
      .page-50jili-withdrawal__method-card {
        max-width: calc(33% - 20px); /* Three items per row */
      }
    }

    @media (max-width: 768px) {
      .page-50jili-withdrawal__container {
        padding: 15px;
      }
      .page-50jili-withdrawal__hero-section {
        height: 300px;
        margin-bottom: 30px;
      }
      .page-50jili-withdrawal__hero-title {
        font-size: 2em;
      }
      .page-50jili-withdrawal__hero-description {
        font-size: 1em;
      }
      .page-50jili-withdrawal__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-50jili-withdrawal__section {
        padding: 25px;
        margin-bottom: 25px;
      }
      .page-50jili-withdrawal__section-title,
      .page-50jili-withdrawal__faq-title {
        font-size: 1.8em;
      }
      .page-50jili-withdrawal__content-text {
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-50jili-withdrawal__step-list,
      .page-50jili-withdrawal__payment-methods,
      .page-50jili-withdrawal__tips-list,
      .page-50jili-withdrawal__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
      }

      .page-50jili-withdrawal__step-item,
      .page-50jili-withdrawal__method-card,
      .page-50jili-withdrawal__tip-item,
      .page-50jili-withdrawal__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
        word-break: break-word !important; /* For long keywords */
      }

      .page-50jili-withdrawal__method-icon {
        width: 80px; /* Adjust icon size for mobile */
        height: auto; /* Maintain aspect ratio */
      }

      .page-50jili-withdrawal__faq-question {
        padding: 12px 15px;
      }
      .page-50jili-withdrawal__faq-question h3 {
        font-size: 1.1em;
      }
      .page-50jili-withdrawal__faq-toggle {
        font-size: 1.3em;
      }
      .page-50jili-withdrawal__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-50jili-withdrawal__hero-section {
        height: 250px;
      }
      .page-50jili-withdrawal__hero-title {
        font-size: 1.8em;
      }
      .page-50jili-withdrawal__hero-description {
        font-size: 0.9em;
      }
      .page-50jili-withdrawal__section-title,
      .page-50jili-withdrawal__faq-title {
        font-size: 1.6em;
      }
      .page-50jili-withdrawal__step-number {
        font-size: 1.6em;
      }
      .page-50jili-withdrawal__step-title {
        font-size: 1.2em;
      }
      .page-50jili-withdrawal__method-card {
        max-width: 100%; /* Single column */
      }
    }
  