
    /* General styles for the page */
    .page-kingph-legit {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #343a40; /* Dark text for good contrast */
      line-height: 1.6;
      background-color: #f8f9fa; /* Light background */
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Fallback for header offset if body padding is not applied by shared CSS */
    .page-kingph-legit {
        padding-top: var(--header-offset, 122px); /* Fallback to 122px if not defined */
    }

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

    .page-kingph-legit__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-kingph-legit__section--light-bg {
      background-color: #ffffff;
    }

    .page-kingph-legit__section--dark-bg {
      background-color: #e9ecef;
    }

    .page-kingph-legit__heading {
      font-size: 2.8em;
      color: #007bff; /* Primary blue for headings */
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-kingph-legit__subheading {
      font-size: 2em;
      color: #343a40;
      margin-bottom: 15px;
      font-weight: 600;
    }

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

    .page-kingph-legit__button {
      display: inline-block;
      background-color: #28a745; /* Green for Call to Action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none; /* Ensure button looks like a button */
      cursor: pointer;
    }

    .page-kingph-legit__button:hover {
      background-color: #218838;
    }

    /* Hero Section */
    .page-kingph-legit__hero-section {
      background-color: #0056b3; /* Darker blue for hero */
      color: #ffffff;
      padding: 100px 0;
      text-align: center;
      padding-top: 10px; /* Small decorative top padding, body handles main offset */
    }

    .page-kingph-legit__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.2;
    }

    .page-kingph-legit__hero-description {
      font-size: 1.3em;
      max-width: 900px;
      margin: 0 auto 30px auto;
    }

    /* Features/Highlights Section */
    .page-kingph-legit__features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-legit__feature-item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      flex: 1 1 calc(33% - 40px); /* Three items per row */
      max-width: calc(33% - 40px);
      text-align: left;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-kingph-legit__feature-item-icon {
      width: 200px; /* Min 200px */
      height: 200px; /* Min 200px */
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }

    .page-kingph-legit__feature-item-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

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

    /* Image Showcase Section */
    .page-kingph-legit__image-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-kingph-legit__image-wrapper {
      flex: 1 1 calc(50% - 25px); /* Two images per row */
      max-width: calc(50% - 25px);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-kingph-legit__image-wrapper img {
      width: 100%;
      height: 400px; /* Fixed height for consistency, object-fit will handle aspect ratio */
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-kingph-legit__image-wrapper img:hover {
      transform: scale(1.05);
    }

    /* Testimonials/Reviews Section */
    .page-kingph-legit__testimonials {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-legit__testimonial-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      flex: 1 1 calc(45% - 30px); /* Two cards per row */
      max-width: calc(45% - 30px);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-kingph-legit__testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
      color: #555;
    }

    .page-kingph-legit__testimonial-author {
      font-weight: bold;
      color: #007bff;
    }

    /* FAQ Section */
    .page-kingph-legit__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-legit__faq-item {
      background-color: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

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

    .page-kingph-legit__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-kingph-legit__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #343a40;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-kingph-legit__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-kingph-legit__faq-item.active .page-kingph-legit__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' effect, or just change text */
      content: '−'; /* This will be handled by JS */
    }

    .page-kingph-legit__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question's left/right */
      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-legit__faq-item.active .page-kingph-legit__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Call to Action Section */
    .page-kingph-legit__cta-section {
      background-color: #007bff;
      color: #ffffff;
      padding: 80px 0;
    }

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

    .page-kingph-legit__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-kingph-legit__hero-title {
        font-size: 3em;
      }

      .page-kingph-legit__heading {
        font-size: 2.2em;
      }

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

      .page-kingph-legit__feature-item,
      .page-kingph-legit__image-wrapper,
      .page-kingph-legit__testimonial-card {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-kingph-legit__hero-section {
        padding: 80px 0;
        padding-top: 10px; /* Small decorative top padding */
      }
      .page-kingph-legit__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-legit__hero-description {
        font-size: 1.1em;
      }
      .page-kingph-legit__section {
        padding: 40px 0;
      }
      .page-kingph-legit__heading {
        font-size: 2em;
      }
      .page-kingph-legit__subheading {
        font-size: 1.6em;
      }
      .page-kingph-legit__paragraph {
        font-size: 1em;
      }
      .page-kingph-legit__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-kingph-legit__features,
      .page-kingph-legit__image-showcase,
      .page-kingph-legit__testimonials {
        flex-direction: column;
        gap: 20px;
        padding: 0; /* Adjust container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-legit__feature-item,
      .page-kingph-legit__image-wrapper,
      .page-kingph-legit__testimonial-card {
        flex: 1 1 100%; /* One item per row */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image specific mobile styles */
      .page-kingph-legit__image-wrapper {
        border-radius: 0; /* Optional: remove border-radius on mobile for full width */
      }
      .page-kingph-legit__image-wrapper img {
        max-width: 100% !important;
        height: auto !important; /* Ensure height adjusts */
        box-sizing: border-box !important;
      }

      .page-kingph-legit__faq-question {
        padding: 15px 20px;
      }
      .page-kingph-legit__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-legit__faq-toggle {
        font-size: 1.5em;
      }
      .page-kingph-legit__faq-answer {
        padding: 0 20px;
      }
      .page-kingph-legit__faq-item.active .page-kingph-legit__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-legit__hero-title {
        font-size: 2em;
      }
      .page-kingph-legit__heading {
        font-size: 1.8em;
      }
      .page-kingph-legit__subheading {
        font-size: 1.4em;
      }
    }
  