
    /* Page-specific CSS for kingph-reviews */
    .page-kingph-reviews {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding-top is not set by shared.css */
    }

    .page-kingph-reviews__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      background-color: #000; /* Fallback */
      overflow: hidden;
      padding-top: 10px; /* Small top padding as body should handle header offset */
    }

    .page-kingph-reviews__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%;
      height: auto;
      filter: brightness(0.5); /* Darken background for text visibility */
    }

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

    .page-kingph-reviews__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-reviews__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-kingph-reviews__main-content {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      margin-top: -50px; /* Overlap with hero for visual effect */
      position: relative;
      z-index: 3;
    }

    .page-kingph-reviews__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

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

    .page-kingph-reviews__review-card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

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

    .page-kingph-reviews__review-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50%;
      max-width: 100%;
      height: auto;
    }

    .page-kingph-reviews__review-card-title {
      font-size: 1.8em;
      color: #222;
      margin-bottom: 15px;
    }

    .page-kingph-reviews__review-card-text {
      font-size: 1em;
      color: #555;
    }

    .page-kingph-reviews__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #0a0a0a;
      color: #fff;
      border-radius: 8px;
      margin-top: 50px;
    }

    .page-kingph-reviews__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .page-kingph-reviews__cta-text {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-reviews__cta-button {
      display: inline-block;
      background-color: #ffd700;
      color: #000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-kingph-reviews__faq-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-top: 50px;
    }

    .page-kingph-reviews__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-kingph-reviews__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-kingph-reviews__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid #eee;
    }

    .page-kingph-reviews__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-kingph-reviews__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-kingph-reviews__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: #fefefe;
      color: #666;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-reviews__hero-title {
        font-size: 2.8em;
      }

      .page-kingph-reviews__hero-subtitle {
        font-size: 1.3em;
      }

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

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

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

      .page-kingph-reviews__cta-text {
        font-size: 1em;
      }

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

    @media (max-width: 768px) {
      .page-kingph-reviews {
        padding-top: var(--header-offset, 100px) !important; /* Adjust for smaller header on mobile */
      }

      .page-kingph-reviews__hero-section {
        padding: 80px 15px;
        min-height: 300px;
      }

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

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

      .page-kingph-reviews__main-content {
        padding: 30px 15px;
        margin-top: -30px;
      }

      .page-kingph-reviews__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

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

      .page-kingph-reviews__review-card {
        padding: 25px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-reviews__review-icon {
        width: 80px;
        height: 80px;
      }

      .page-kingph-reviews__cta-section {
        padding: 40px 15px;
        margin-top: 30px;
      }

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

      .page-kingph-reviews__cta-text {
        font-size: 0.9em;
      }

      .page-kingph-reviews__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
      }

      .page-kingph-reviews__faq-section {
        padding: 40px 15px;
        margin-top: 30px;
      }

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

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

      .page-kingph-reviews__faq-toggle {
        font-size: 1.5em;
      }

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

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

    @media (max-width: 480px) {
      .page-kingph-reviews__hero-title {
        font-size: 1.8em;
      }
      .page-kingph-reviews__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-reviews__section-title {
        font-size: 1.6em;
      }
      .page-kingph-reviews__review-card-title {
        font-size: 1.3em;
      }
      .page-kingph-reviews__faq-question h3 {
        font-size: 1em;
      }
    }

    /* Ensure all images are responsive and not small icons */
    .page-kingph-reviews img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
      box-sizing: border-box;
    }
    .page-kingph-reviews__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-kingph-reviews img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-reviews__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  