
    /* Base styles for the page-kingph-register */
    .page-kingph-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Hero Section */
    .page-kingph-register__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 60px; /* Decorative padding-top, assuming body already has header offset */
    }

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

    .page-kingph-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-kingph-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-kingph-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-kingph-register__hero-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }

    .page-kingph-register__hero-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-kingph-register__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-kingph-register__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-kingph-register__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #333;
      font-weight: bold;
    }

    .page-kingph-register__section--dark .page-kingph-register__section-title {
      color: #ffcc00;
    }

    /* Benefits Section */
    .page-kingph-register__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
    }

    .page-kingph-register__benefit-item {
      background-color: #f0f8ff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-register__benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .page-kingph-register__benefit-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-kingph-register__benefit-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: #007bff;
      font-weight: bold;
    }

    .page-kingph-register__benefit-description {
      font-size: 1em;
      color: #555;
    }

    /* How to Register Section */
    .page-kingph-register__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
    }

    .page-kingph-register__step-item {
      background-color: #fff3e0;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-register__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ff8c00;
      margin-bottom: 15px;
      background-color: #ffe0b2;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      border: 3px solid #ff8c00;
    }

    .page-kingph-register__step-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #e67e22;
      font-weight: bold;
    }

    .page-kingph-register__step-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Promotions Section */
    .page-kingph-register__promo-card {
      background-color: #fdf5e6;
      border: 2px solid #ffcc00;
      border-radius: 10px;
      padding: 40px;
      margin-top: 40px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-register__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 25px;
      object-fit: cover;
    }

    .page-kingph-register__promo-title {
      font-size: 2em;
      color: #d4af37;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-kingph-register__promo-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 30px;
    }

    .page-kingph-register__promo-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-register__promo-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Payment and Providers Section */
    .page-kingph-register__icon-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-kingph-register__icon-item {
      width: 120px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      box-sizing: border-box; /* Responsive item */
    }

    .page-kingph-register__icon-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-kingph-register__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-kingph-register__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .page-kingph-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e6f7ff;
      color: #007bff; /* Ensures good contrast */
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid #d0e9ff;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-kingph-register__faq-question:hover {
      background-color: #d0e9ff;
    }

    .page-kingph-register__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from interfering with click event */
      color: #007bff; /* Ensure good contrast */
    }

    .page-kingph-register__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-kingph-register__faq-item.active .page-kingph-register__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kingph-register__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;
      background-color: #f9fcff;
      color: #555;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kingph-register__hero-title {
        font-size: 2.2em;
      }

      .page-kingph-register__hero-subtitle {
        font-size: 1.1em;
      }

      .page-kingph-register__section {
        padding: 40px 15px;
      }

      .page-kingph-register__section-title {
        font-size: 1.8em;
      }

      .page-kingph-register__benefits-grid,
      .page-kingph-register__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-kingph-register__benefit-item,
      .page-kingph-register__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-kingph-register__promo-card {
        padding: 25px;
      }

      .page-kingph-register__promo-title {
        font-size: 1.6em;
      }

      .page-kingph-register__icon-grid {
        gap: 15px;
      }

      .page-kingph-register__icon-item {
        width: 100px;
        height: 70px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-kingph-register__faq-question,
      .page-kingph-register__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-register__hero-title {
        font-size: 1.8em;
      }

      .page-kingph-register__hero-subtitle {
        font-size: 1em;
      }

      .page-kingph-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kingph-register__section-title {
        font-size: 1.5em;
      }

      .page-kingph-register__benefit-icon {
        width: 60px;
        height: 60px;
      }

      .page-kingph-register__benefit-title {
        font-size: 1.2em;
      }

      .page-kingph-register__step-number {
        font-size: 2em;
        width: 60px;
        height: 60px;
      }

      .page-kingph-register__step-title {
        font-size: 1.1em;
      }

      .page-kingph-register__icon-item {
        width: 90px;
        height: 60px;
      }
    }
  