
    :root {
      --page-kingph-gcash-primary-color: #007bff; /* Blue */
      --page-kingph-gcash-secondary-color: #6c757d; /* Grey */
      --page-kingph-gcash-accent-color: #28a745; /* Green */
      --page-kingph-gcash-background-light: #f8f9fa; /* Light Grey */
      --page-kingph-gcash-text-dark: #212529; /* Dark Grey */
      --page-kingph-gcash-text-light: #ffffff; /* White */
      --page-kingph-gcash-border-color: #dee2e6; /* Light Border */
    }

    .page-kingph-gcash {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kingph-gcash-text-dark);
      background-color: var(--page-kingph-gcash-background-light);
      padding-top: 10px; /* Small padding to avoid content touching the very top, assuming body has header offset */
    }

    .page-kingph-gcash__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-kingph-gcash__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: var(--page-kingph-gcash-text-light);
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-kingph-gcash__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 70%);
      animation: page-kingph-gcash__hero-pulse 10s infinite alternate;
    }

    @keyframes page-kingph-gcash__hero-pulse {
      0% { transform: scale(1); opacity: 0.5; }
      100% { transform: scale(1.2); opacity: 0.7; }
    }

    .page-kingph-gcash__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-kingph-gcash__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
      color: var(--page-kingph-gcash-text-light);
    }

    .page-kingph-gcash__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-gcash__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-kingph-gcash-accent-color);
      color: var(--page-kingph-gcash-text-light);
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
    }

    .page-kingph-gcash__button:hover {
      background-color: #218838; /* Darker green */
    }

    .page-kingph-gcash__image-container {
      margin-bottom: 30px;
      text-align: center;
    }

    .page-kingph-gcash__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: block; /* Ensure it doesn't leave extra space below */
      margin: 0 auto; /* Center the image */
    }

    .page-kingph-gcash__title {
      font-size: 2.5em;
      color: var(--page-kingph-gcash-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-kingph-gcash__subtitle {
      font-size: 1.8em;
      color: var(--page-kingph-gcash-text-dark);
      margin-bottom: 20px;
    }

    .page-kingph-gcash__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-kingph-gcash-text-dark);
    }

    .page-kingph-gcash__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kingph-gcash__feature-card {
      background-color: var(--page-kingph-gcash-text-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-kingph-gcash__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-kingph-gcash__feature-icon {
      margin-bottom: 15px;
      width: 100%; /* Ensure responsiveness */
      height: auto;
      max-width: 250px; /* Example max-width for feature icons */
      border-radius: 4px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-gcash__feature-title {
      font-size: 1.3em;
      color: var(--page-kingph-gcash-primary-color);
      margin-bottom: 10px;
    }

    .page-kingph-gcash__feature-description {
      font-size: 1em;
      color: var(--page-kingph-gcash-secondary-color);
    }

    .page-kingph-gcash__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-kingph-gcash__step-item {
      background-color: var(--page-kingph-gcash-text-light);
      border: 1px solid var(--page-kingph-gcash-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-kingph-gcash__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-kingph-gcash-primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--page-kingph-gcash-primary-color);
      border-radius: 50%;
    }

    .page-kingph-gcash__step-content {
      flex-grow: 1;
    }

    .page-kingph-gcash__step-title {
      font-size: 1.4em;
      color: var(--page-kingph-gcash-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-kingph-gcash__step-description {
      font-size: 1em;
      color: var(--page-kingph-gcash-text-dark);
    }

    .page-kingph-gcash__promo-banner {
      background-color: var(--page-kingph-gcash-accent-color);
      color: var(--page-kingph-gcash-text-light);
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .page-kingph-gcash__promo-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-kingph-gcash__promo-text {
      font-size: 1.2em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-gcash__faq-section {
      background-color: var(--page-kingph-gcash-text-light);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    }

    .page-kingph-gcash__faq-title {
      font-size: 2.2em;
      color: var(--page-kingph-gcash-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-kingph-gcash__faq-item {
      border-bottom: 1px solid var(--page-kingph-gcash-border-color);
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-kingph-gcash__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-kingph-gcash__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-kingph-gcash-text-dark);
      transition: color 0.3s ease;
    }

    .page-kingph-gcash__faq-question:hover {
      color: var(--page-kingph-gcash-primary-color);
    }

    .page-kingph-gcash__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-kingph-gcash__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
      color: var(--page-kingph-gcash-primary-color);
    }

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

    .page-kingph-gcash__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding is 0 */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-kingph-gcash-secondary-color);
      font-size: 1em;
    }

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

    .page-kingph-gcash__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-kingph-gcash-primary-color);
      color: var(--page-kingph-gcash-text-light);
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-kingph-gcash__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-kingph-gcash__cta-text {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-kingph-gcash__external-link {
        color: var(--page-kingph-gcash-text-light);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .page-kingph-gcash__external-link:hover {
        color: var(--page-kingph-gcash-accent-color);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-kingph-gcash__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-gcash__hero-subtitle {
        font-size: 1.3em;
      }
      .page-kingph-gcash__title {
        font-size: 2em;
      }
      .page-kingph-gcash__subtitle {
        font-size: 1.5em;
      }
      .page-kingph-gcash__promo-title {
        font-size: 1.8em;
      }
      .page-kingph-gcash__promo-text {
        font-size: 1.1em;
      }
      .page-kingph-gcash__cta-title {
        font-size: 2em;
      }
      .page-kingph-gcash__cta-text {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-gcash__section {
        padding: 30px 15px;
      }
      .page-kingph-gcash__hero-section {
        padding: 60px 15px;
      }
      .page-kingph-gcash__hero-title {
        font-size: 2em;
      }
      .page-kingph-gcash__hero-subtitle {
        font-size: 1.1em;
      }
      .page-kingph-gcash__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-kingph-gcash__title {
        font-size: 1.8em;
      }
      .page-kingph-gcash__subtitle {
        font-size: 1.3em;
      }
      .page-kingph-gcash__text {
        font-size: 0.95em;
      }

      /* List item responsive requirements */
      .page-kingph-gcash__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-kingph-gcash__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-gcash__steps-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-kingph-gcash__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph-gcash__step-number {
        margin-bottom: 10px;
      }
      .page-kingph-gcash__step-content {
        width: 100%;
      }

      .page-kingph-gcash__promo-banner {
        padding: 30px 15px;
      }
      .page-kingph-gcash__promo-title {
        font-size: 1.6em;
      }
      .page-kingph-gcash__promo-text {
        font-size: 1em;
      }

      .page-kingph-gcash__faq-section {
        padding: 30px 15px;
      }
      .page-kingph-gcash__faq-title {
        font-size: 1.8em;
      }
      .page-kingph-gcash__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }
      .page-kingph-gcash__faq-answer {
        font-size: 0.95em;
        padding: 15px 10px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }
      .page-kingph-gcash__faq-toggle {
        font-size: 1.3em;
      }

      .page-kingph-gcash__cta-section {
        padding: 40px 15px;
      }
      .page-kingph-gcash__cta-title {
        font-size: 1.8em;
      }
      .page-kingph-gcash__cta-text {
        font-size: 1em;
      }

      /* Ensure all images are responsive on mobile */
      .page-kingph-gcash__image,
      .page-kingph-gcash__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-gcash__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-gcash__hero-title {
        font-size: 1.8em;
      }
      .page-kingph-gcash__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-gcash__title {
        font-size: 1.5em;
      }
      .page-kingph-gcash__subtitle {
        font-size: 1.2em;
      }
      .page-kingph-gcash__faq-question {
        font-size: 1em;
      }
      .page-kingph-gcash__faq-toggle {
        font-size: 1.2em;
      }
    }
  