
    :root {
      --primary-color: #e44d26; /* A vibrant orange, often associated with power/excitement */
      --secondary-color: #333;
      --accent-color: #f7b32b; /* Gold/yellow for highlights */
      --text-color: #f0f0f0;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #444;
      --button-hover-color: #ff6633;
    }

    .page-kingph-pagcor {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body already has header offset */
    }

    .page-kingph-pagcor__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--background-dark);
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-kingph-pagcor__hero-section {
      background: linear-gradient(135deg, var(--background-dark), var(--secondary-color));
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 0;
      margin-bottom: 0;
    }

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

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

    .page-kingph-pagcor__h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
    }

    .page-kingph-pagcor__h2 {
      font-size: 2em;
      color: var(--primary-color);
      margin-top: 40px;
      margin-bottom: 25px;
      text-align: center;
      word-wrap: break-word;
    }

    .page-kingph-pagcor__h3 {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-top: 30px;
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-kingph-pagcor__paragraph {
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-kingph-pagcor__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-kingph-pagcor__button:hover {
      background-color: var(--button-hover-color);
    }

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

    .page-kingph-pagcor__feature-item {
      background-color: var(--background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-kingph-pagcor__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-pagcor__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-kingph-pagcor__feature-title {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-kingph-pagcor__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kingph-pagcor__provider-item {
      background-color: var(--background-light);
      padding: 15px 25px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      color: var(--text-color);
      font-weight: bold;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word;
    }

    .page-kingph-pagcor__image-container {
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
      border-radius: 8px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-kingph-pagcor__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    /* FAQ Section Styles */
    .page-kingph-pagcor__faq-section {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-kingph-pagcor__faq-h2 {
      text-align: center;
      margin-bottom: 30px;
      color: var(--primary-color);
      font-size: 2.2em;
    }

    .page-kingph-pagcor__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--background-dark);
    }

    .page-kingph-pagcor__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--secondary-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-kingph-pagcor__faq-question:hover {
      background-color: #444;
    }

    .page-kingph-pagcor__faq-question h3 {
      margin: 0;
      color: var(--accent-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      flex-grow: 1; /* Allow question text to take up space */
      padding-right: 10px; /* Space between text and toggle */
    }

    .page-kingph-pagcor__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      flex-shrink: 0; /* Prevent toggle from shrinking */
    }

    .page-kingph-pagcor__faq-item.active .page-kingph-pagcor__faq-toggle {
      transform: rotate(45deg); /* Transforms '+' to 'x' or '-' */
    }

    .page-kingph-pagcor__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: var(--text-color);
      background-color: var(--background-dark);
    }

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

    .page-kingph-pagcor__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word;
    }
    .page-kingph-pagcor__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kingph-pagcor__h1 {
        font-size: 2em;
      }

      .page-kingph-pagcor__h2 {
        font-size: 1.7em;
      }

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

      .page-kingph-pagcor__section {
        padding: 30px 15px;
      }

      .page-kingph-pagcor__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-kingph-pagcor__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-kingph-pagcor__provider-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .page-kingph-pagcor__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-pagcor__faq-section {
        padding: 30px 15px;
        margin: 30px auto;
      }

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

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

      .page-kingph-pagcor__faq-answer {
        padding: 0 10px;
      }

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

    @media (max-width: 480px) {
      .page-kingph-pagcor__h1 {
        font-size: 1.8em;
      }
      .page-kingph-pagcor__h2 {
        font-size: 1.5em;
      }
      .page-kingph-pagcor__faq-question h3 {
        font-size: 1em;
      }
      .page-kingph-pagcor__faq-toggle {
        font-size: 1.5em;
      }
    }
  