
    :root {
      --page-8k8-ph-primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-8k8-ph-secondary-color: #333;
      --page-8k8-ph-background-color: #f5f5f5;
      --page-8k8-ph-dark-text: #1a1a1a;
      --page-8k8-ph-light-text: #ffffff;
      --page-8k8-ph-accent-color: #ffd700; /* Gold for highlights */
    }

    .page-8k8-ph {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-ph-dark-text);
      line-height: 1.6;
      background-color: var(--page-8k8-ph-background-color);
      padding-bottom: 60px; /* Space for footer */
      box-sizing: border-box;
    }

    /* Fixed navigation bar spacing (as per requirement) */
    .page-8k8-ph__hero-section,
    .page-8k8-ph__section:first-of-type {
      padding-top: 10px; /* Small top padding, assuming body padding handles header offset */
    }

    .page-8k8-ph__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-ph__hero-section {
      text-align: center;
      padding: 60px 0;
      background-color: var(--page-8k8-ph-secondary-color);
      color: var(--page-8k8-ph-light-text);
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-8k8-ph__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-ph__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-ph-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-8k8-ph__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-ph-light-text);
      opacity: 0.9;
    }

    .page-8k8-ph__button {
      display: inline-block;
      background-color: var(--page-8k8-ph-primary-color);
      color: var(--page-8k8-ph-light-text);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-8k8-ph__button:hover {
      background-color: #c23e1f; /* Darker shade of primary */
      transform: translateY(-2px);
    }

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

    .page-8k8-ph__floating-button {
      background-color: var(--page-8k8-ph-primary-color);
      color: var(--page-8k8-ph-light-text);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
      box-sizing: border-box;
    }

    .page-8k8-ph__floating-button:hover {
      background-color: #c23e1f;
      transform: scale(1.05);
    }

    .page-8k8-ph__section {
      padding: 60px 0;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-ph__section--grey {
      background-color: #ebebeb;
    }

    .page-8k8-ph__section-title {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-ph-primary-color);
    }

    .page-8k8-ph__section-description {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-8k8-ph-secondary-color);
    }

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

    .page-8k8-ph__card {
      background-color: var(--page-8k8-ph-light-text);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-ph__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .page-8k8-ph__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-ph__card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-8k8-ph-primary-color);
    }

    .page-8k8-ph__card-text {
      font-size: 0.95em;
      color: var(--page-8k8-ph-secondary-color);
    }

    .page-8k8-ph__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-ph__list-item {
      background-color: var(--page-8k8-ph-light-text);
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      min-width: 250px;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-8k8-ph-primary-color);
      text-align: center;
      box-sizing: border-box;
    }

    /* FAQ Section Styles */
    .page-8k8-ph__faq-section {
      padding: 60px 0;
      background-color: var(--page-8k8-ph-background-color);
      text-align: center;
    }

    .page-8k8-ph__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-ph__faq-item {
      background-color: var(--page-8k8-ph-light-text);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      color: var(--page-8k8-ph-dark-text);
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid #eee;
      box-sizing: border-box;
    }

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

    .page-8k8-ph__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-ph-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-ph__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-8k8-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--page-8k8-ph-secondary-color);
      box-sizing: border-box;
    }

    .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;
    }

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

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

      .page-8k8-ph__section-title {
        font-size: 1.8em;
      }

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

      .page-8k8-ph__list {
        flex-direction: column; /* Stack list items */
        gap: 15px;
      }

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

      .page-8k8-ph__list-item p { /* Ensure text in list items wraps */
        word-break: break-word !important;
      }

      .page-8k8-ph__container,
      .page-8k8-ph__faq-container {
        padding: 0 10px;
      }

      .page-8k8-ph__faq-question,
      .page-8k8-ph__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-8k8-ph__faq-item.active .page-8k8-ph__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
      .page-8k8-ph__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-8k8-ph__floating-button {
        padding: 8px 15px;
        min-width: 90px;
      }
    }

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