
    :root {
      --kingph-glife-primary-color: #FFD700; /* Gold */
      --kingph-glife-secondary-color: #1A1A1A; /* Dark Grey */
      --kingph-glife-accent-color: #FF4500; /* Orange Red */
      --kingph-glife-text-color: #E0E0E0; /* Light Grey */
      --kingph-glife-bg-color: #0D0D0D; /* Very Dark Grey */
      --kingph-glife-card-bg: #2C2C2C; /* Medium Dark Grey */
    }

    .page-kingph-glife {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-glife-text-color);
      background-color: var(--kingph-glife-bg-color);
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space for footer */
    }

    .page-kingph-glife__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    .page-kingph-glife__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-kingph-glife__hero-content {
      position: relative;
      z-index: 2;
      color: #FFFFFF;
      padding: 20px;
      max-width: 900px;
      box-sizing: border-box;
    }

    .page-kingph-glife__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--kingph-glife-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-glife__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-glife__promo-button {
      display: inline-block;
      background-color: var(--kingph-glife-accent-color);
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 8px;
      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-glife__promo-button:hover {
      background-color: #E63900;
      transform: translateY(-3px);
    }

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

    .page-kingph-glife__section-title {
      font-size: 2.8em;
      color: var(--kingph-glife-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-kingph-glife__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--kingph-glife-accent-color);
      border-radius: 2px;
    }

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

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

    .page-kingph-glife__feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-glife__card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--kingph-glife-primary-color);
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-kingph-glife__card-title {
      font-size: 1.8em;
      color: var(--kingph-glife-primary-color);
      margin-bottom: 15px;
    }

    .page-kingph-glife__card-description {
      font-size: 1em;
      color: var(--kingph-glife-text-color);
    }

    .page-kingph-glife__image-showcase {
      text-align: center;
      margin-top: 50px;
    }

    .page-kingph-glife__showcase-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      object-fit: cover;
      display: block;
      margin: 0 auto;
      box-sizing: border-box;
    }

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

    .page-kingph-glife__how-it-works-item {
      background-color: var(--kingph-glife-card-bg);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      flex: 1 1 calc(33% - 20px);
      max-width: calc(33% - 20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }

    .page-kingph-glife__step-number {
      background-color: var(--kingph-glife-accent-color);
      color: #FFFFFF;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-glife__step-title {
      font-size: 1.5em;
      color: var(--kingph-glife-primary-color);
      margin-bottom: 10px;
    }

    .page-kingph-glife__step-description {
      font-size: 1em;
      color: var(--kingph-glife-text-color);
    }

    .page-kingph-glife__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-kingph-glife__faq-item {
      background-color: var(--kingph-glife-card-bg);
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-kingph-glife__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--kingph-glife-secondary-color);
      color: var(--kingph-glife-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kingph-glife__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click events */
      color: var(--kingph-glife-primary-color);
    }

    .page-kingph-glife__faq-question:hover {
      background-color: #262626;
    }

    .page-kingph-glife__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click events */
      color: var(--kingph-glife-accent-color);
    }

    .page-kingph-glife__faq-item.active .page-kingph-glife__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #FFFFFF;
    }

    .page-kingph-glife__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(--kingph-glife-text-color);
      background-color: var(--kingph-glife-card-bg);
    }

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

    .page-kingph-glife__faq-answer p {
      margin-bottom: 10px;
      font-size: 0.95em;
    }

    .page-kingph-glife__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--kingph-glife-secondary-color);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-kingph-glife__cta-title {
      font-size: 2.5em;
      color: var(--kingph-glife-primary-color);
      margin-bottom: 20px;
    }

    .page-kingph-glife__cta-description {
      font-size: 1.2em;
      color: var(--kingph-glife-text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 1024px) {
      .page-kingph-glife__hero-title {
        font-size: 3em;
      }
      .page-kingph-glife__hero-subtitle {
        font-size: 1.3em;
      }
      .page-kingph-glife__section-title {
        font-size: 2.2em;
      }
      .page-kingph-glife__how-it-works-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-kingph-glife__hero-section {
        height: 50vh;
        min-height: 300px;
      }
      .page-kingph-glife__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-glife__hero-subtitle {
        font-size: 1.1em;
      }
      .page-kingph-glife__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kingph-glife__section {
        padding: 40px 15px;
      }
      .page-kingph-glife__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-kingph-glife__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-kingph-glife__feature-card {
        padding: 25px;
      }
      .page-kingph-glife__card-icon {
        width: 80px;
        height: 80px;
      }
      .page-kingph-glife__card-title {
        font-size: 1.5em;
      }
      .page-kingph-glife__how-it-works-list {
        gap: 20px;
      }
      .page-kingph-glife__how-it-works-item {
        flex: 1 1 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;
        word-break: break-word !important;
      }
      .page-kingph-glife__how-it-works-list,
      .page-kingph-glife__faq-section {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph-glife__faq-item {
        margin-left: 15px;
        margin-right: 15px;
      }
      .page-kingph-glife__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-kingph-glife__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-glife__faq-answer {
        padding: 15px 20px !important;
      }
      .page-kingph-glife__cta-title {
        font-size: 2em;
      }
      .page-kingph-glife__cta-description {
        font-size: 1em;
      }
      .page-kingph-glife__showcase-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  