
    /* Page-specific CSS for free-kingph */
    .page-free-kingph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
    }

    .page-free-kingph__hero-section {
      position: relative;
      background-color: #1a1a2e;
      color: #fff;
      padding: 10px 20px 60px; /* Added 10px top padding for offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-free-kingph__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

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

    .page-free-kingph__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold color for emphasis */
    }

    .page-free-kingph__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-free-kingph__cta-button {
      display: inline-block;
      background-color: #e44d26; /* Vibrant orange */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-free-kingph__cta-button:hover {
      background-color: #f06a48;
    }

    .page-free-kingph__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-free-kingph__section--light-bg {
      background-color: #f0f0f0;
    }

    .page-free-kingph__section--dark-bg {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-free-kingph__section-title {
      font-size: 2.5em;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-free-kingph__section--dark-bg .page-free-kingph__section-title {
      color: #ffcc00;
    }

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

    .page-free-kingph__content-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-free-kingph__section--dark-bg .page-free-kingph__content-card {
      background-color: #34495e;
      color: #ecf0f1;
    }

    .page-free-kingph__card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-free-kingph__card-title {
      font-size: 1.5em;
      color: #1a1a2e;
      margin-bottom: 15px;
    }

    .page-free-kingph__section--dark-bg .page-free-kingph__card-title {
      color: #ffcc00;
    }

    .page-free-kingph__card-description {
      font-size: 1em;
      color: #555;
    }

    .page-free-kingph__section--dark-bg .page-free-kingph__card-description {
      color: #bdc3c7;
    }

    .page-free-kingph__image-full-width {
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-free-kingph__text-block {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: center;
      font-size: 1.1em;
    }

    .page-free-kingph__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-free-kingph__faq-title {
      font-size: 2.5em;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-free-kingph__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-free-kingph__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-free-kingph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-free-kingph__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-free-kingph__faq-question:hover {
      color: #e44d26;
    }

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

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

    .page-free-kingph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      font-size: 1em;
    }

    .page-free-kingph__faq-item.active .page-free-kingph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to cover any content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-free-kingph__hero-title {
        font-size: 2.2em;
      }

      .page-free-kingph__hero-subtitle {
        font-size: 1em;
      }

      .page-free-kingph__section {
        padding: 40px 15px;
      }

      .page-free-kingph__section-title {
        font-size: 2em;
      }

      .page-free-kingph__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-free-kingph__content-card {
        padding: 20px;
      }

      .page-free-kingph__card-icon {
        width: 80px;
        height: 80px;
      }

      .page-free-kingph__card-title {
        font-size: 1.3em;
      }

      .page-free-kingph__text-block {
        font-size: 1em;
      }

      .page-free-kingph__faq-section {
        padding: 40px 15px;
      }

      .page-free-kingph__faq-title {
        font-size: 2em;
      }

      .page-free-kingph__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }

      .page-free-kingph__faq-question h3 {
        font-size: 1.1em;
      }

      .page-free-kingph__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.95em;
      }

      /* Ensure all list-like items (cards in this case) are 100% width */
      .page-free-kingph__content-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Image responsiveness */
      .page-free-kingph__hero-background,
      .page-free-kingph__card-icon,
      .page-free-kingph__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-free-kingph__section-title,
      .page-free-kingph__faq-title {
        font-size: 1.8em;
      }
    }
  