
    /* Base styles for the page */
    .page-kingph-2025-withdrawal {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light grey for text */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 40px; /* General padding for the bottom */
    }

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

    .page-kingph-2025-withdrawal__section {
      padding: 60px 0;
      text-align: center;
      background-color: #222; /* Slightly lighter dark for sections */
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden; /* For images */
    }

    .page-kingph-2025-withdrawal__section--dark {
      background-color: #1a1a1a;
    }

    .page-kingph-2025-withdrawal__section-title {
      font-size: 2.8em;
      color: #f7d100; /* Gold accent color */
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
    }

    .page-kingph-2025-withdrawal__section-subtitle {
      font-size: 1.8em;
      color: #e0e0e0;
      margin-bottom: 25px;
    }

    .page-kingph-2025-withdrawal__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #b0b0b0;
    }

    .page-kingph-2025-withdrawal__button {
      display: inline-block;
      background-color: #f7d100; /* Gold accent */
      color: #1a1a1a; /* Dark text for contrast */
      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-kingph-2025-withdrawal__button:hover {
      background-color: #e6c000;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-kingph-2025-withdrawal__hero-section {
      padding: 70px 0 60px; /* Small padding-top to account for fixed header, then standard section padding */
      background-color: #0d0d0d;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-height: 500px;
      text-align: center;
    }
    
    .page-kingph-2025-withdrawal__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-kingph-2025-withdrawal__hero-title {
      font-size: 3.5em;
      color: #f7d100;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-2025-withdrawal__hero-subtitle {
      font-size: 1.5em;
      color: #e0e0e0;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-kingph-2025-withdrawal__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background image */
      z-index: 1;
    }
    .page-kingph-2025-withdrawal__hero-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Image styles */
    .page-kingph-2025-withdrawal__image-wrapper {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Important for responsive images */
      width: 100%; /* Ensure container fills width */
    }

    .page-kingph-2025-withdrawal__image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* List styles */
    .page-kingph-2025-withdrawal__list {
      list-style: none;
      padding: 0;
      margin: 40px auto;
      max-width: 800px;
      text-align: left;
    }

    .page-kingph-2025-withdrawal__list-item {
      background-color: #333;
      padding: 20px 25px;
      margin-bottom: 15px;
      border-radius: 5px;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
      width: 100%; /* Default to full width */
    }

    .page-kingph-2025-withdrawal__list-item::before {
      content: '✓'; /* Checkmark icon */
      color: #f7d100;
      font-weight: bold;
      margin-right: 15px;
      font-size: 1.2em;
    }

    .page-kingph-2025-withdrawal__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin: 40px auto;
      max-width: 800px;
      text-align: left;
    }

    .page-kingph-2025-withdrawal__steps-item {
      background-color: #333;
      padding: 20px 25px;
      margin-bottom: 15px;
      border-radius: 5px;
      font-size: 1.1em;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
      width: 100%; /* Default to full width */
    }

    .page-kingph-2025-withdrawal__steps-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #f7d100;
      color: #1a1a1a;
      font-weight: bold;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      min-width: 30px; /* Prevent shrinking */
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 15px;
      font-size: 1em;
    }

    /* Payment methods grid */
    .page-kingph-2025-withdrawal__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin: 40px auto;
      max-width: 1000px;
      padding: 0 20px;
    }

    .page-kingph-2025-withdrawal__payment-item {
      background-color: #333;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for grid items */
    }

    .page-kingph-2025-withdrawal__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-kingph-2025-withdrawal__payment-icon {
      margin-bottom: 15px;
    }

    .page-kingph-2025-withdrawal__payment-icon img {
      width: 100%; /* Ensure image fills container */
      max-width: 150px; /* Max width for logos */
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-kingph-2025-withdrawal__payment-name {
      font-weight: bold;
      color: #f7d100;
      font-size: 1.2em;
    }

    /* FAQ Section */
    .page-kingph-2025-withdrawal__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-kingph-2025-withdrawal__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-kingph-2025-withdrawal__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-2025-withdrawal__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
    }

    .page-kingph-2025-withdrawal__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-kingph-2025-withdrawal__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #f7d100;
      pointer-events: none; /* Crucial for click event on parent div */
    }

    .page-kingph-2025-withdrawal__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #f7d100;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent div */
    }

    .page-kingph-2025-withdrawal__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will change on active */
      background-color: #2c2c2c;
      color: #b0b0b0;
      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: 1.05em;
    }

    .page-kingph-2025-withdrawal__faq-item.active .page-kingph-2025-withdrawal__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

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

    /* Call to Action section */
    .page-kingph-2025-withdrawal__cta-section {
      background-color: #0d0d0d;
      padding: 80px 0;
      text-align: center;
    }

    .page-kingph-2025-withdrawal__cta-title {
      font-size: 2.5em;
      color: #f7d100;
      margin-bottom: 25px;
    }

    .page-kingph-2025-withdrawal__cta-text {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-2025-withdrawal__hero-title {
        font-size: 3em;
      }
      .page-kingph-2025-withdrawal__section-title {
        font-size: 2.4em;
      }
      .page-kingph-2025-withdrawal__section-subtitle {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-2025-withdrawal__container,
      .page-kingph-2025-withdrawal__faq-container {
        padding: 0 15px;
      }

      .page-kingph-2025-withdrawal__hero-section {
        min-height: 400px;
        padding-top: 60px; /* Adjust for smaller screens */
      }
      .page-kingph-2025-withdrawal__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-2025-withdrawal__hero-subtitle {
        font-size: 1.2em;
      }

      .page-kingph-2025-withdrawal__section {
        padding: 40px 0;
      }
      .page-kingph-2025-withdrawal__section-title {
        font-size: 2em;
      }
      .page-kingph-2025-withdrawal__section-subtitle {
        font-size: 1.4em;
      }
      .page-kingph-2025-withdrawal__text {
        font-size: 1em;
      }
      .page-kingph-2025-withdrawal__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List items responsive */
      .page-kingph-2025-withdrawal__list-item,
      .page-kingph-2025-withdrawal__steps-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        font-size: 0.95em;
      }
      .page-kingph-2025-withdrawal__list,
      .page-kingph-2025-withdrawal__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Images responsive */
      .page-kingph-2025-withdrawal__image-wrapper {
        padding: 0 15px !important; /* Adjust padding for mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
      .page-kingph-2025-withdrawal__image {
        max-width: 100% !important;
        height: auto !important;
      }

      /* Payment grid responsive */
      .page-kingph-2025-withdrawal__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        padding: 0 15px;
      }
      .page-kingph-2025-withdrawal__payment-item {
        padding: 20px;
      }
      .page-kingph-2025-withdrawal__payment-icon img {
        max-width: 100px;
      }
      .page-kingph-2025-withdrawal__payment-name {
        font-size: 1.1em;
      }

      /* FAQ responsive */
      .page-kingph-2025-withdrawal__faq-question {
        padding: 15px 20px;
      }
      .page-kingph-2025-withdrawal__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-2025-withdrawal__faq-toggle {
        font-size: 1.5em;
      }
      .page-kingph-2025-withdrawal__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-kingph-2025-withdrawal__faq-item.active .page-kingph-2025-withdrawal__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-2025-withdrawal__cta-title {
        font-size: 2em;
      }
      .page-kingph-2025-withdrawal__cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-2025-withdrawal__hero-title {
        font-size: 2em;
      }
      .page-kingph-2025-withdrawal__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-2025-withdrawal__section-title {
        font-size: 1.8em;
      }
      .page-kingph-2025-withdrawal__faq-question h3 {
        font-size: 1em;
      }
      .page-kingph-2025-withdrawal__faq-toggle {
        font-size: 1.3em;
      }
    }
  