
    :root {
      --page-8k8-ph__primary-color: #e44d26; /* Vibrant orange-red */
      --page-8k8-ph__secondary-color: #333; /* Dark grey */
      --page-8k8-ph__accent-color: #ffd700; /* Gold */
      --page-8k8-ph__text-light: #f8f8f8;
      --page-8k8-ph__text-dark: #1a1a1a;
      --page-8k8-ph__background-dark: #121212;
      --page-8k8-ph__background-light: #f0f0f0;
      --page-8k8-ph__border-color: #444;
    }

    .page-8k8-ph {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: var(--page-8k8-ph__text-light);
      background-color: var(--page-8k8-ph__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small aesthetic top padding, assuming body handles header offset */
    }

    .page-8k8-ph__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-ph__section--light-bg {
      background-color: var(--page-8k8-ph__background-light);
      color: var(--page-8k8-ph__text-dark);
    }

    .page-8k8-ph__hero-section {
      position: relative;
      background-size: cover;
      background-position: center;
      color: var(--page-8k8-ph__text-light);
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-ph__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-8k8-ph__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-8k8-ph__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-ph__accent-color);
    }

    .page-8k8-ph__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      font-weight: 300;
    }

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

    .page-8k8-ph__button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

    .page-8k8-ph__button--secondary {
      background-color: var(--page-8k8-ph__secondary-color);
      margin-left: 15px;
    }

    .page-8k8-ph__button--secondary:hover {
      background-color: #555;
    }

    .page-8k8-ph__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-ph__primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-ph__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-ph__accent-color);
      border-radius: 2px;
    }

    .page-8k8-ph__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-ph__card {
      background-color: var(--page-8k8-ph__secondary-color);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-ph__border-color);
    }

    .page-8k8-ph__card--light {
      background-color: #fff;
      color: var(--page-8k8-ph__text-dark);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      border-color: #ddd;
    }

    .page-8k8-ph__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-ph__card-icon {
      margin-bottom: 15px;
    }

    .page-8k8-ph__card-title {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: var(--page-8k8-ph__primary-color);
    }

    .page-8k8-ph__card-text {
      font-size: 1em;
      color: var(--page-8k8-ph__text-light);
    }

    .page-8k8-ph__card--light .page-8k8-ph__card-text {
      color: var(--page-8k8-ph__text-dark);
    }

    .page-8k8-ph__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Required for responsive images */
      width: 100%; /* Required for responsive images */
    }

    .page-8k8-ph__image-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-ph__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-ph__list-item {
      background-color: var(--page-8k8-ph__secondary-color);
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-left: 5px solid var(--page-8k8-ph__primary-color);
      box-sizing: border-box; /* Ensure padding/border included in width */
      word-wrap: break-word; /* Ensure long text wraps */
      overflow-wrap: break-word; /* Ensure long text wraps */
    }

    .page-8k8-ph__list-item--light {
      background-color: #fff;
      color: var(--page-8k8-ph__text-dark);
      border-left-color: var(--page-8k8-ph__accent-color);
    }

    .page-8k8-ph__list-item h3 {
      color: var(--page-8k8-ph__primary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-8k8-ph__list-item p {
      font-size: 0.95em;
      color: var(--page-8k8-ph__text-light);
    }

    .page-8k8-ph__list-item--light p {
      color: var(--page-8k8-ph__text-dark);
    }

    /* FAQ Section Styles */
    .page-8k8-ph__faq-section {
      background-color: var(--page-8k8-ph__secondary-color);
      color: var(--page-8k8-ph__text-light);
      padding: 60px 20px;
    }

    .page-8k8-ph__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-ph__faq-item {
      background-color: #222;
      border-bottom: 1px solid var(--page-8k8-ph__border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-ph__text-light);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-ph__faq-question:hover {
      background-color: #333;
    }

    .page-8k8-ph__faq-question h3 {
      margin: 0;
      color: var(--page-8k8-ph__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-ph__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: var(--page-8k8-ph__accent-color);
    }

    .page-8k8-ph__faq-item.active .page-8k8-ph__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-8k8-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      color: var(--page-8k8-ph__text-light);
      text-align: left;
    }

    .page-8k8-ph__faq-item.active .page-8k8-ph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-8k8-ph__faq-answer p {
      margin: 0;
    }

    /* Floating buttons for Register/Login */
    .page-8k8-ph__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-ph__floating-button {
      background-color: var(--page-8k8-ph__primary-color);
      color: var(--page-8k8-ph__text-light);
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-8k8-ph__floating-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

    .page-8k8-ph__floating-button--login {
      background-color: var(--page-8k8-ph__accent-color);
      color: var(--page-8k8-ph__text-dark);
    }

    .page-8k8-ph__floating-button--login:hover {
      background-color: #ffe64d;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-ph__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-ph__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-ph__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-ph__button--secondary {
        margin-left: 0;
        margin-top: 10px;
      }

      .page-8k8-ph__title {
        font-size: 2em;
      }

      .page-8k8-ph__text {
        font-size: 1em;
      }

      .page-8k8-ph__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-ph__list {
        grid-template-columns: 1fr;
        padding: 0; /* Adjust list container padding for mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-ph__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-ph__card-title {
        font-size: 1.4em;
      }

      .page-8k8-ph__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-ph__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-ph__faq-item.active .page-8k8-ph__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-ph__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on smaller screens */
        gap: 8px;
      }

      .page-8k8-ph__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-8k8-ph__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 10px; /* Add some padding to prevent image touching screen edges */
      }

      .page-8k8-ph__image-container img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

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

      .page-8k8-ph__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-ph__button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
      }

      .page-8k8-ph__button--secondary {
        margin-top: 0;
        margin-left: 0;
      }

      .page-8k8-ph__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: column; /* Stack vertically on very small screens */
        gap: 5px;
      }
    }
  