
    /* CSS for the page-kingph-app-login */
    .page-kingph-app-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* Add some padding at the bottom */
    }

    /* Fixed navigation bar offset - applying to the main content wrapper */
    /* This assumes shared.css handles body padding-top. If not, this acts as a fallback. */
    .page-kingph-app-login__hero-section {
        padding-top: 10px; /* Small decorative top padding as body should have the main offset */
    }
    /* Fallback for the entire page if body padding-top is not handled by shared.css */
    /* If the main content needs to be pushed down, this is the place. */
    /* .page-kingph-app-login { padding-top: var(--header-offset, 122px); } */


    .page-kingph-app-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-kingph-app-login__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-kingph-app-login__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

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

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

    .page-kingph-app-login__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
    }

    .page-kingph-app-login__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-kingph-app-login__button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-kingph-app-login__button:hover {
      background-color: #e0a800;
    }

    .page-kingph-app-login__button--primary {
      background-color: #28a745;
      color: #fff;
    }

    .page-kingph-app-login__button--primary:hover {
      background-color: #218838;
    }

    .page-kingph-app-login__title {
      font-size: 2.2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-kingph-app-login__subtitle {
      font-size: 1.6em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-kingph-app-login__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #444;
    }

    .page-kingph-app-login__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-kingph-app-login__step-item {
      background-color: #e9f5ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-app-login__step-number {
      font-size: 2.5em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-kingph-app-login__step-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-kingph-app-login__image-wrapper {
      text-align: center;
      margin: 30px 0;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .page-kingph-app-login__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-kingph-app-login__promo-link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-kingph-app-login__promo-link:hover {
      text-decoration: underline;
    }

    /* FAQ Section Styles */
    .page-kingph-app-login__faq-section {
      background-color: #f0f8ff;
    }

    .page-kingph-app-login__faq-item {
      margin-bottom: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-kingph-app-login__faq-question {
      background-color: #fff;
      padding: 18px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-kingph-app-login__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-kingph-app-login__faq-question-text {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-kingph-app-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
    }

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

    .page-kingph-app-login__faq-answer {
      background-color: #fcfcfc;
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

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

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

      .page-kingph-app-login__title {
        font-size: 1.8em;
      }

      .page-kingph-app-login__subtitle {
        font-size: 1.4em;
      }

      .page-kingph-app-login__text {
        font-size: 1em;
      }

      .page-kingph-app-login__steps-list {
        grid-template-columns: 1fr; /* Stack items on small screens */
        gap: 20px;
      }

      /* List item responsive styles */
      .page-kingph-app-login__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; /* Adjust padding for mobile */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-app-login__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-app-login__container {
        padding: 0 10px;
      }

      .page-kingph-app-login__section {
        padding: 20px;
      }

      .page-kingph-app-login__faq-question {
        padding: 15px 20px;
      }

      .page-kingph-app-login__faq-question-text {
        font-size: 1.1em;
      }

      .page-kingph-app-login__faq-answer {
        padding: 0 20px;
      }

      .page-kingph-app-login__faq-item.active .page-kingph-app-login__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive styles */
      .page-kingph-app-login__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-kingph-app-login__content-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

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

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

      .page-kingph-app-login__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  