
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #DC143C; /* Crimson/Red */
      --dark-background: #1a1a1a;
      --light-text: #f0f0f0;
      --gray-text: #b0b0b0;
      --border-color: #444;
      --button-bg: var(--primary-color);
      --button-text: var(--dark-background);
      --input-bg: #333;
      --input-border: #555;
    }

    .page-kingph-log-in {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    @media (max-width: 768px) {
      .page-kingph-log-in__section {
        padding: 30px 15px;
      }
    }

    .page-kingph-log-in__hero-section {
      background-color: #0d0d0d;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top spacing, body handles main offset */
    }

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

    .page-kingph-log-in__hero-content {
      position: relative;
      z-index: 1;
    }

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

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

    .page-kingph-log-in__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-kingph-log-in__button {
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
      display: inline-block; /* Ensure button styling */
    }

    .page-kingph-log-in__button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-kingph-log-in__button--secondary {
      background-color: var(--secondary-color);
      color: var(--light-text);
    }

    .page-kingph-log-in__button--secondary:hover {
      background-color: #c01030;
    }

    @media (max-width: 768px) {
      .page-kingph-log-in__hero-title {
        font-size: 2.2em;
      }
      .page-kingph-log-in__hero-subtitle {
        font-size: 1em;
      }
      .page-kingph-log-in__button-group {
        flex-direction: column;
        align-items: center;
      }
      .page-kingph-log-in__button {
        width: 100%;
        max-width: 280px;
      }
    }

    .page-kingph-log-in__login-form-section {
      background-color: #222;
      text-align: center;
    }

    .page-kingph-log-in__login-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 30px;
    }

    .page-kingph-log-in__login-form {
      max-width: 400px;
      margin: 0 auto;
      background-color: #2e2e2e;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      border: 1px solid var(--border-color);
    }

    .page-kingph-log-in__form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .page-kingph-log-in__form-label {
      display: block;
      margin-bottom: 8px;
      color: var(--light-text);
      font-weight: bold;
    }

    .page-kingph-log-in__form-input {
      width: 100%;
      padding: 12px;
      border: 1px solid var(--input-border);
      border-radius: 5px;
      background-color: var(--input-bg);
      color: var(--light-text);
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-kingph-log-in__form-input::placeholder {
      color: var(--gray-text);
    }

    .page-kingph-log-in__form-button {
      width: 100%;
      padding: 12px;
      background-color: var(--button-bg);
      color: var(--button-text);
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-kingph-log-in__form-button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-kingph-log-in__forgot-password {
      margin-top: 15px;
      font-size: 0.9em;
      color: var(--gray-text);
    }

    .page-kingph-log-in__forgot-password-text {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-kingph-log-in__forgot-password-text:hover {
      color: #e0b800;
    }

    .page-kingph-log-in__benefits-section {
      background-color: var(--dark-background);
    }

    .page-kingph-log-in__benefits-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
    }

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

    .page-kingph-log-in__benefit-card {
      background-color: #2e2e2e;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-kingph-log-in__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-kingph-log-in__benefit-icon {
      width: 100%; /* Ensure image scales */
      height: auto;
      max-width: 300px; /* Max size for the actual image */
      margin: 0 auto 15px auto;
      object-fit: contain;
      display: block; /* Center block element */
    }

    .page-kingph-log-in__benefit-heading {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-kingph-log-in__benefit-description {
      color: var(--gray-text);
      font-size: 0.95em;
    }

    .page-kingph-log-in__cta-section {
      background-color: #222;
      text-align: center;
    }

    .page-kingph-log-in__cta-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-kingph-log-in__cta-description {
      font-size: 1.1em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-log-in__faq-section {
      background-color: var(--dark-background);
    }

    .page-kingph-log-in__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
    }

    .page-kingph-log-in__faq-item {
      background-color: #2e2e2e;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      overflow: hidden;
    }

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

    .page-kingph-log-in__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-kingph-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--light-text);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kingph-log-in__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-kingph-log-in__faq-item.active .page-kingph-log-in__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-kingph-log-in__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(--gray-text);
    }

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

    .page-kingph-log-in__faq-answer p {
      margin: 0 0 10px 0;
    }
    .page-kingph-log-in__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Mobile responsive styles for lists and images */
    @media (max-width: 768px) {
      .page-kingph-log-in__faq-question {
        padding: 12px 15px;
      }
      .page-kingph-log-in__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-log-in__faq-toggle {
        font-size: 1.3em;
      }
      .page-kingph-log-in__faq-answer {
        padding: 0 10px;
      }
      .page-kingph-log-in__faq-item.active .page-kingph-log-in__faq-answer {
        padding: 15px 10px !important;
      }

      /* List items responsive for benefit cards */
      .page-kingph-log-in__benefits-grid { /* The container itself */
        grid-template-columns: 1fr; /* Stack items vertically */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph-log-in__benefits-grid > .page-kingph-log-in__benefit-card { /* Targeting direct children of the grid */
        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;
        word-break: break-word !important;
      }

      /* Image responsive styles */
      .page-kingph-log-in img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-log-in__benefit-icon { /* Specific to benefit icons */
        max-width: 200px !important; /* Ensure it's not too large on small screens */
        width: auto !important;
        height: auto !important;
      }
    }
  