
    :root {
      --page-8k8-com-ph-2-primary-color: #f7b731; /* Golden Yellow */
      --page-8k8-com-ph-2-secondary-color: #3a3a3a; /* Dark Grey */
      --page-8k8-com-ph-2-accent-color: #e55d87; /* Pink */
      --page-8k8-com-ph-2-text-color-light: #ffffff;
      --page-8k8-com-ph-2-text-color-dark: #333333;
      --page-8k8-com-ph-2-background-dark: #1a1a1a;
      --page-8k8-com-ph-2-background-light: #f0f0f0;
    }

    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-ph-2-text-color-dark);
      background-color: var(--page-8k8-com-ph-2-background-light);
      overflow-x: hidden;
      padding-top: 10px; /* Decorative padding, relying on body padding for header offset */
    }

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

    .page-8k8-com-ph-2__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-com-ph-2-background-dark), #000000);
      color: var(--page-8k8-com-ph-2-text-color-light);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

    .page-8k8-com-ph-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-ph-2__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-ph-2-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
    }

    .page-8k8-com-ph-2__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
    }

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

    .page-8k8-com-ph-2__cta-button:hover {
      background-color: #c94a73;
      transform: translateY(-3px);
    }

    .page-8k8-com-ph-2__section {
      padding: 60px 0;
      background-color: var(--page-8k8-com-ph-2-background-light);
      text-align: center;
    }

    .page-8k8-com-ph-2__section--dark {
      background-color: var(--page-8k8-com-ph-2-secondary-color);
      color: var(--page-8k8-com-ph-2-text-color-light);
    }

    .page-8k8-com-ph-2__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-ph-2-secondary-color);
    }

    .page-8k8-com-ph-2__section--dark .page-8k8-com-ph-2__section-title {
      color: var(--page-8k8-com-ph-2-primary-color);
    }

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

    .page-8k8-com-ph-2__card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__section--dark .page-8k8-com-ph-2__card {
      background-color: #2a2a2a;
      color: var(--page-8k8-com-ph-2-text-color-light);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-ph-2__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-ph-2__card-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-ph-2__card-title {
      font-size: 1.5em;
      color: var(--page-8k8-com-ph-2-secondary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-8k8-com-ph-2__section--dark .page-8k8-com-ph-2__card-title {
      color: var(--page-8k8-com-ph-2-primary-color);
    }

    .page-8k8-com-ph-2__card-description {
      font-size: 1em;
      color: #666666;
      flex-grow: 1;
      word-wrap: break-word;
    }

    .page-8k8-com-ph-2__section--dark .page-8k8-com-ph-2__card-description {
      color: #cccccc;
    }

    .page-8k8-com-ph-2__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__payment-item {
      background-color: #ffffff;
      padding: 15px 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      font-weight: bold;
      color: var(--page-8k8-com-ph-2-secondary-color);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      max-width: 180px; /* Limit width for payment items */
      text-align: center;
      font-size: 0.9em;
      word-wrap: break-word;
    }

    .page-8k8-com-ph-2__section--dark .page-8k8-com-ph-2__payment-item {
      background-color: #2a2a2a;
      color: var(--page-8k8-com-ph-2-primary-color);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-ph-2__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-ph-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 350px;
      justify-content: center;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__floating-button {
      flex: 1;
      padding: 12px 0;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      max-width: 160px;
    }

    .page-8k8-com-ph-2__floating-button--register {
      background-color: var(--page-8k8-com-ph-2-primary-color);
      color: var(--page-8k8-com-ph-2-secondary-color);
    }

    .page-8k8-com-ph-2__floating-button--register:hover {
      background-color: #fdd867;
      transform: translateY(-3px);
    }

    .page-8k8-com-ph-2__floating-button--login {
      background-color: var(--page-8k8-com-ph-2-accent-color);
      color: var(--page-8k8-com-ph-2-text-color-light);
    }

    .page-8k8-com-ph-2__floating-button--login:hover {
      background-color: #c94a73;
      transform: translateY(-3px);
    }

    .page-8k8-com-ph-2__faq-section {
      background-color: var(--page-8k8-com-ph-2-background-light);
      padding: 60px 0;
    }

    .page-8k8-com-ph-2__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-com-ph-2__faq-item {
      background-color: #ffffff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-com-ph-2-secondary-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-com-ph-2-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      word-wrap: break-word;
      flex-grow: 1;
      padding-right: 15px; /* Space for toggle icon */
    }

    .page-8k8-com-ph-2__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-8k8-com-ph-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-com-ph-2-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-com-ph-2__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.4s ease;
      opacity: 0;
      color: #555555;
      font-size: 1em;
      line-height: 1.8;
      box-sizing: border-box;
      word-wrap: break-word;
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__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-com-ph-2__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-com-ph-2__section-title {
        font-size: 2em;
      }

      .page-8k8-com-ph-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-ph-2__card {
        padding: 20px;
      }

      .page-8k8-com-ph-2__card-title {
        font-size: 1.3em;
      }

      .page-8k8-com-ph-2__payment-providers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .page-8k8-com-ph-2__payment-item {
        width: 100% !important;
        max-width: 250px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
      }

      .page-8k8-com-ph-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-ph-2__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-ph-2__floating-buttons {
        max-width: calc(100% - 30px);
        gap: 10px;
      }

      .page-8k8-com-ph-2__floating-button {
        padding: 10px 0;
        font-size: 1em;
      }

      /* Ensure all images are responsive on mobile */
      .page-8k8-com-ph-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-ph-2__card-icon {
        width: 100% !important;
        max-width: 250px !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-8k8-com-ph-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-com-ph-2__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-ph-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-ph-2__faq-question {
        font-size: 1em;
      }
      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1em;
      }
    }
  