
    /* Page-specific CSS styles for 8k8-com-ph-login-register */
    .page-8k8-com-ph-login-register {
      background-color: #1a1a2e; /* Dark background */
      color: #e0e0e0; /* Light text */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
    }

    /* General Section Styling */
    .page-8k8-com-ph-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-com-ph-login-register__section-title {
      font-size: 2.5rem;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-com-ph-login-register__section-subtitle {
      font-size: 1.8rem;
      color: #00bcd4; /* Secondary accent */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph-login-register__text-content {
      font-size: 1.1rem;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Hero Section */
    .page-8k8-com-ph-login-register__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: #0d0d1a; /* Even darker background for hero */
      padding: 80px 20px;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

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

    .page-8k8-com-ph-login-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-com-ph-login-register__hero-title {
      font-size: 3.5rem;
      color: #e94560;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8k8-com-ph-login-register__hero-description {
      font-size: 1.3rem;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .page-8k8-com-ph-login-register__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-ph-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2rem;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      color: #1a1a2e; /* Dark text for buttons */
      border: none;
    }

    .page-8k8-com-ph-login-register__button--primary {
      background-color: #e94560;
    }

    .page-8k8-com-ph-login-register__button--primary:hover {
      background-color: #cf3a53;
      transform: translateY(-2px);
    }

    .page-8k8-com-ph-login-register__button--secondary {
      background-color: #00bcd4;
    }

    .page-8k8-com-ph-login-register__button--secondary:hover {
      background-color: #00a3bb;
      transform: translateY(-2px);
    }

    /* Features/Benefits Section */
    .page-8k8-com-ph-login-register__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-login-register__feature-card {
      background-color: #2a2a4a; /* Slightly lighter dark */
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-8k8-com-ph-login-register__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-ph-login-register__feature-icon {
      width: 100px; /* Min size 200x200 for actual images, this is for placeholder visual */
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-8k8-com-ph-login-register__feature-title {
      font-size: 1.5rem;
      color: #e94560;
      margin-bottom: 15px;
    }

    .page-8k8-com-ph-login-register__feature-description {
      font-size: 1rem;
      color: #c0c0c0;
    }

    /* Step-by-step Guides */
    .page-8k8-com-ph-login-register__steps-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-login-register__step-item {
      display: flex;
      align-items: center;
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-ph-login-register__step-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #e94560;
      margin-right: 25px;
      min-width: 50px;
      text-align: center;
    }

    .page-8k8-com-ph-login-register__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-ph-login-register__step-title {
      font-size: 1.6rem;
      color: #00bcd4;
      margin-bottom: 10px;
    }

    .page-8k8-com-ph-login-register__step-description {
      font-size: 1.1rem;
      color: #c0c0c0;
    }

    /* Image Styling */
    .page-8k8-com-ph-login-register__image-container {
      text-align: center;
      margin: 30px 0;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-ph-login-register__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Call to Action */
    .page-8k8-com-ph-login-register__cta-section {
      text-align: center;
      background-color: #0d0d1a;
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 50px;
    }

    .page-8k8-com-ph-login-register__cta-title {
      font-size: 2.2rem;
      color: #e94560;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph-login-register__cta-description {
      font-size: 1.2rem;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-com-ph-login-register__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-login-register__faq-item {
      margin-bottom: 15px;
      border: 1px solid #5a5a7e;
      border-radius: 8px;
      background-color: #2a2a4a;
      overflow: hidden;
    }

    .page-8k8-com-ph-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5e;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-ph-login-register__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-8k8-com-ph-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.3rem;
      color: #e0e0e0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-ph-login-register__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-com-ph-login-register__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: #c0c0c0;
      font-size: 1rem;
    }

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

    .page-8k8-com-ph-login-register__faq-item.active .page-8k8-com-ph-login-register__faq-toggle {
      transform: rotate(45deg); /* Plus to minus visual */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-ph-login-register__hero-title {
        font-size: 3rem;
      }
      .page-8k8-com-ph-login-register__section-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-ph-login-register__hero-section {
        padding: 60px 15px;
        min-height: 400px;
      }

      .page-8k8-com-ph-login-register__hero-title {
        font-size: 2.5rem;
      }

      .page-8k8-com-ph-login-register__hero-description {
        font-size: 1.1rem;
      }

      .page-8k8-com-ph-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-com-ph-login-register__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
      }

      .page-8k8-com-ph-login-register__section {
        padding: 30px 15px;
      }

      .page-8k8-com-ph-login-register__section-title {
        font-size: 2rem;
        margin-bottom: 20px;
      }

      .page-8k8-com-ph-login-register__section-subtitle {
        font-size: 1.5rem;
      }

      .page-8k8-com-ph-login-register__text-content {
        font-size: 1rem;
      }

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

      .page-8k8-com-ph-login-register__feature-card {
        padding: 25px;
      }

      .page-8k8-com-ph-login-register__feature-title {
        font-size: 1.3rem;
      }

      .page-8k8-com-ph-login-register__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .page-8k8-com-ph-login-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 2rem;
        width: 100%;
      }

      .page-8k8-com-ph-login-register__step-title {
        font-size: 1.4rem;
      }

      .page-8k8-com-ph-login-register__step-description {
        font-size: 1rem;
      }

      .page-8k8-com-ph-login-register__cta-section {
        padding: 40px 15px;
      }

      .page-8k8-com-ph-login-register__cta-title {
        font-size: 1.8rem;
      }

      .page-8k8-com-ph-login-register__cta-description {
        font-size: 1rem;
      }

      /* Image responsive for mobile */
      .page-8k8-com-ph-login-register__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-ph-login-register__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* FAQ responsive for mobile */
      .page-8k8-com-ph-login-register__faq-question {
        padding: 15px 15px;
      }
      .page-8k8-com-ph-login-register__faq-question h3 {
        font-size: 1.1rem;
      }
      .page-8k8-com-ph-login-register__faq-toggle {
        font-size: 1.5rem;
      }
      .page-8k8-com-ph-login-register__faq-answer {
        padding: 0 15px;
        font-size: 0.95rem;
      }
      .page-8k8-com-ph-login-register__faq-item.active .page-8k8-com-ph-login-register__faq-answer {
        padding: 15px 15px !important;
      }
      .page-8k8-com-ph-login-register__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-ph-login-register__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-ph-login-register__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-ph-login-register__hero-title {
        font-size: 2rem;
      }
      .page-8k8-com-ph-login-register__section-title {
        font-size: 1.8rem;
      }
      .page-8k8-com-ph-login-register__section-subtitle {
        font-size: 1.3rem;
      }
    }
  