
    :root {
      --page-kingph-voucher-primary-color: #f7b32b; /* Gold/Orange */
      --page-kingph-voucher-secondary-color: #333; /* Dark Grey */
      --page-kingph-voucher-background-light: #f9f9f9;
      --page-kingph-voucher-background-dark: #2a2a2a;
      --page-kingph-voucher-text-color-light: #333;
      --page-kingph-voucher-text-color-dark: #f0f0f0;
      --page-kingph-voucher-border-color: #ddd;
      --page-kingph-voucher-button-hover: #e0a427;
      --page-kingph-voucher-card-bg: #ffffff;
      --page-kingph-voucher-shadow: rgba(0, 0, 0, 0.1);
    }

    .page-kingph-voucher {
      font-family: 'Arial', sans-serif;
      color: var(--page-kingph-voucher-text-color-light);
      line-height: 1.6;
      background-color: var(--page-kingph-voucher-background-light);
    }

    .page-kingph-voucher__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-kingph-voucher__hero-section {
      background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
      color: var(--page-kingph-voucher-text-color-dark);
      padding: 80px 20px 60px;
      padding-top: 10px; /* Adjust for fixed header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-kingph-voucher__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-kingph-voucher__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-kingph-voucher__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-kingph-voucher-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-voucher__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-kingph-voucher-text-color-dark);
    }

    .page-kingph-voucher__button {
      display: inline-block;
      background-color: var(--page-kingph-voucher-primary-color);
      color: var(--page-kingph-voucher-text-color-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-voucher__button:hover {
      background-color: var(--page-kingph-voucher-button-hover);
      transform: translateY(-2px);
    }

    .page-kingph-voucher__heading {
      font-size: 2.5em;
      color: var(--page-kingph-voucher-secondary-color);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .page-kingph-voucher__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-kingph-voucher-primary-color);
      border-radius: 2px;
    }

    .page-kingph-voucher__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-kingph-voucher__voucher-card {
      background-color: var(--page-kingph-voucher-card-bg);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-kingph-voucher-shadow);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-kingph-voucher__voucher-card:hover {
      transform: translateY(-5px);
    }

    .page-kingph-voucher__voucher-card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-kingph-voucher__voucher-card-title {
      font-size: 1.8em;
      color: var(--page-kingph-voucher-primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kingph-voucher__voucher-card-description {
      font-size: 1em;
      color: var(--page-kingph-voucher-text-color-light);
      text-align: center;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-kingph-voucher__steps-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-voucher__step-item {
      background-color: var(--page-kingph-voucher-card-bg);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-kingph-voucher-shadow);
      padding: 30px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-sizing: border-box;
      position: relative;
    }

    .page-kingph-voucher__step-number {
      background-color: var(--page-kingph-voucher-primary-color);
      color: var(--page-kingph-voucher-background-dark);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px;
      box-shadow: 0 2px 5px var(--page-kingph-voucher-shadow);
    }

    .page-kingph-voucher__step-title {
      font-size: 1.5em;
      color: var(--page-kingph-voucher-secondary-color);
      margin-bottom: 15px;
    }

    .page-kingph-voucher__step-description {
      font-size: 1em;
      color: var(--page-kingph-voucher-text-color-light);
    }

    .page-kingph-voucher__game-providers-section {
      background-color: var(--page-kingph-voucher-background-dark);
      color: var(--page-kingph-voucher-text-color-dark);
    }

    .page-kingph-voucher__game-providers-heading {
      color: var(--page-kingph-voucher-primary-color);
    }

    .page-kingph-voucher__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-kingph-voucher__provider-item {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-kingph-voucher-text-color-dark);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-voucher__provider-item:hover {
      background-color: var(--page-kingph-voucher-primary-color);
      color: var(--page-kingph-voucher-background-dark);
    }

    .page-kingph-voucher__payment-section {
      background-color: var(--page-kingph-voucher-background-light);
    }

    .page-kingph-voucher__payment-heading {
      color: var(--page-kingph-voucher-secondary-color);
    }

    .page-kingph-voucher__payment-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-kingph-voucher__payment-item {
      background-color: var(--page-kingph-voucher-card-bg);
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-kingph-voucher-secondary-color);
      box-shadow: 0 2px 10px var(--page-kingph-voucher-shadow);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-voucher__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-kingph-voucher__faq-section {
      background-color: var(--page-kingph-voucher-background-dark);
      color: var(--page-kingph-voucher-text-color-dark);
    }

    .page-kingph-voucher__faq-heading {
      color: var(--page-kingph-voucher-primary-color);
    }

    .page-kingph-voucher__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-kingph-voucher__faq-item {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-kingph-voucher__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: rgba(255, 255, 255, 0.15);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-voucher__faq-question:hover {
      background-color: rgba(255, 255, 255, 0.25);
    }

    .page-kingph-voucher__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-kingph-voucher-text-color-dark);
      pointer-events: none; /* Prevents text from interfering with click event */
      flex-grow: 1;
    }

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

    .page-kingph-voucher__faq-item.active .page-kingph-voucher__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually, or you can use '-' */
    }

    .page-kingph-voucher__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-voucher-text-color-dark);
      font-size: 1em;
      box-sizing: border-box;
    }

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

    .page-kingph-voucher__cta-section {
      background-color: var(--page-kingph-voucher-primary-color);
      color: var(--page-kingph-voucher-text-color-light);
      padding: 60px 20px;
    }

    .page-kingph-voucher__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-kingph-voucher-background-dark);
    }

    .page-kingph-voucher__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-kingph-voucher-secondary-color);
    }

    .page-kingph-voucher__cta-button {
      background-color: var(--page-kingph-voucher-background-dark);
      color: var(--page-kingph-voucher-primary-color);
    }

    .page-kingph-voucher__cta-button:hover {
      background-color: #000;
      color: #fff;
    }

    /* General image styling */
    .page-kingph-voucher img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kingph-voucher__hero-title {
        font-size: 2.5em;
      }

      .page-kingph-voucher__hero-subtitle {
        font-size: 1.2em;
      }

      .page-kingph-voucher__heading {
        font-size: 2em;
      }

      .page-kingph-voucher__text-content {
        font-size: 1em;
      }

      .page-kingph-voucher__voucher-grid {
        grid-template-columns: 1fr;
      }

      .page-kingph-voucher__step-item {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
      }

      .page-kingph-voucher__provider-list,
      .page-kingph-voucher__payment-list {
        flex-direction: column;
        align-items: center;
      }

      .page-kingph-voucher__provider-item,
      .page-kingph-voucher__payment-item {
        width: 100% !important;
        max-width: 300px !important; /* Constrain max width for better readability on narrow screens */
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-kingph-voucher__faq-question {
        padding: 15px 20px;
      }

      .page-kingph-voucher__faq-question h3 {
        font-size: 1.1em;
      }

      .page-kingph-voucher__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-voucher__cta-title {
        font-size: 2em;
      }

      .page-kingph-voucher__cta-description {
        font-size: 1em;
      }

      .page-kingph-voucher img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-voucher__image-wrapper { 
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
    
    @media (max-width: 480px) {
      .page-kingph-voucher__hero-title {
        font-size: 2em;
      }
      .page-kingph-voucher__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-voucher__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kingph-voucher__heading {
        font-size: 1.8em;
      }
      .page-kingph-voucher__voucher-card-title {
        font-size: 1.5em;
      }
      .page-kingph-voucher__step-title {
        font-size: 1.3em;
      }
    }
  