
    :root {
      --kingph-primary-color: #f7b32b; /* A vibrant gold/orange for promotions */
      --kingph-secondary-color: #2c3e50; /* Dark blue for contrast */
      --kingph-background-dark: #1a1a2e;
      --kingph-text-light: #ecf0f1;
      --kingph-text-dark: #34495e;
      --kingph-accent-color: #e74c3c; /* Red for highlights */
    }

    .page-kingph-promotions {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-text-light);
      background-color: var(--kingph-background-dark);
      line-height: 1.6;
    }

    .page-kingph-promotions__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-kingph-promotions__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      text-align: center;
      background-color: var(--kingph-secondary-color);
      color: var(--kingph-text-light);
    }

    .page-kingph-promotions__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      filter: brightness(0.7); /* Allowed for background effect, not changing original color */
      margin-bottom: 20px;
    }

    .page-kingph-promotions__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: -100px; /* Overlap with image for better design */
    }

    .page-kingph-promotions__hero-title {
      font-size: 3em;
      color: var(--kingph-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-promotions__hero-subtitle {
      font-size: 1.5em;
      color: var(--kingph-text-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-promotions__cta-button {
      display: inline-block;
      background-color: var(--kingph-accent-color);
      color: var(--kingph-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* General Section Styling */
    .page-kingph-promotions__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-kingph-promotions__section:nth-of-type(even) {
      background-color: var(--kingph-background-dark);
    }

    .page-kingph-promotions__section:nth-of-type(odd) {
      background-color: #22223a; /* Slightly different dark background */
    }

    .page-kingph-promotions__section-title {
      font-size: 2.5em;
      color: var(--kingph-primary-color);
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

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

    .page-kingph-promotions__section-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--kingph-text-light);
    }

    /* Promotions Grid */
    .page-kingph-promotions__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-kingph-promotions__promotion-card {
      background-color: var(--kingph-secondary-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-kingph-promotions__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-kingph-promotions__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-kingph-promotions__promotion-content {
      padding: 25px;
    }

    .page-kingph-promotions__promotion-title {
      font-size: 1.8em;
      color: var(--kingph-primary-color);
      margin-bottom: 15px;
    }

    .page-kingph-promotions__promotion-description {
      font-size: 1em;
      color: var(--kingph-text-light);
      margin-bottom: 20px;
    }

    .page-kingph-promotions__promotion-button {
      display: inline-block;
      background-color: var(--kingph-primary-color);
      color: var(--kingph-background-dark);
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-promotions__promotion-button:hover {
      background-color: #d69f29;
    }

    /* How to Claim Section */
    .page-kingph-promotions__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1000px;
    }

    .page-kingph-promotions__step-item {
      background-color: var(--kingph-secondary-color);
      border-radius: 12px;
      padding: 30px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-kingph-promotions__step-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-kingph-promotions__step-title {
      font-size: 1.6em;
      color: var(--kingph-primary-color);
      margin-bottom: 15px;
    }

    .page-kingph-promotions__step-description {
      font-size: 1em;
      color: var(--kingph-text-light);
    }

    /* Why Choose Section */
    .page-kingph-promotions__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-kingph-promotions__feature-item {
      background-color: var(--kingph-secondary-color);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-kingph-promotions__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-kingph-promotions__feature-text {
      font-size: 1.2em;
      color: var(--kingph-text-light);
      font-weight: bold;
    }

    /* FAQ Section */
    .page-kingph-promotions__faq-section {
      background-color: var(--kingph-background-dark);
      padding: 60px 20px;
      text-align: center;
    }

    .page-kingph-promotions__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-kingph-promotions__faq-item {
      background-color: var(--kingph-secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-kingph-promotions__faq-item:hover {
      background-color: #34495e;
    }

    .page-kingph-promotions__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--kingph-primary-color);
      font-weight: bold;
    }

    .page-kingph-promotions__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: inherit; /* Ensure color is inherited from parent */
    }

    .page-kingph-promotions__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-kingph-promotions__faq-item.active .page-kingph-promotions__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or similar */
    }

    .page-kingph-promotions__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--kingph-text-light);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action Bottom */
    .page-kingph-promotions__bottom-cta-section {
      background-color: var(--kingph-primary-color);
      color: var(--kingph-background-dark);
      padding: 60px 20px;
      text-align: center;
    }

    .page-kingph-promotions__bottom-cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--kingph-background-dark);
    }

    .page-kingph-promotions__bottom-cta-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: var(--kingph-text-dark);
    }

    .page-kingph-promotions__bottom-cta-button {
      background-color: var(--kingph-accent-color);
      color: var(--kingph-text-light);
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-promotions__bottom-cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-promotions__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-promotions__hero-subtitle {
        font-size: 1.3em;
      }
      .page-kingph-promotions__section-title {
        font-size: 2em;
      }
      .page-kingph-promotions__promotion-title {
        font-size: 1.5em;
      }
      .page-kingph-promotions__step-item {
        max-width: 100%; /* For smaller screens, allow full width */
      }
    }

    @media (max-width: 768px) {
      .page-kingph-promotions__hero-section {
        padding-bottom: 40px;
      }
      .page-kingph-promotions__hero-content {
        margin-top: -60px;
      }
      .page-kingph-promotions__hero-title {
        font-size: 2em;
      }
      .page-kingph-promotions__hero-subtitle {
        font-size: 1.1em;
      }
      .page-kingph-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-kingph-promotions__section {
        padding: 40px 15px;
      }
      .page-kingph-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-kingph-promotions__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-kingph-promotions__promotions-grid {
        grid-template-columns: 1fr;
      }
      .page-kingph-promotions__promotion-card {
        margin-bottom: 20px;
      }
      .page-kingph-promotions__promotion-image {
        height: 200px;
      }

      .page-kingph-promotions__steps-list {
        flex-direction: column;
        align-items: center;
      }
      .page-kingph-promotions__step-item {
        width: 100% !important;
        max-width: 90% !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-promotions__step-title {
        font-size: 1.4em;
      }

      .page-kingph-promotions__feature-list {
        grid-template-columns: 1fr;
      }
      .page-kingph-promotions__feature-item {
        width: 100% !important;
        max-width: 90% !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-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-kingph-promotions__faq-answer {
        padding: 15px 20px;
      }
      .page-kingph-promotions__faq-item.active .page-kingph-promotions__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-promotions__bottom-cta-title {
        font-size: 2em;
      }
      .page-kingph-promotions__bottom-cta-description {
        font-size: 1em;
      }
      .page-kingph-promotions__bottom-cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-promotions__hero-title {
        font-size: 1.8em;
      }
      .page-kingph-promotions__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-promotions__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-kingph-promotions__section-title {
        font-size: 1.6em;
      }
      .page-kingph-promotions__promotion-title {
        font-size: 1.3em;
      }
      .page-kingph-promotions__promotion-description {
        font-size: 0.9em;
      }
      .page-kingph-promotions__step-title {
        font-size: 1.3em;
      }
      .page-kingph-promotions__feature-text {
        font-size: 1.1em;
      }
      .page-kingph-promotions__faq-question {
        font-size: 1em;
      }
      .page-kingph-promotions__bottom-cta-title {
        font-size: 1.8em;
      }
      .page-kingph-promotions__bottom-cta-description {
        font-size: 0.9em;
      }
      .page-kingph-promotions__bottom-cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
    }
  