
    /* Base styles for the page content */
    .page-8k8-com-login-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    /* Hero Section */
    .page-8k8-com-login-ph__hero-section {
      background: linear-gradient(135deg, #0a1f44, #004d99);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-8k8-com-login-ph__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:abstract:1920x1080:abstract,pattern,gaming_background]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-8k8-com-login-ph__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-login-ph__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700; /* Gold color for emphasis */
    }

    .page-8k8-com-login-ph__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-ph__hero-button {
      display: inline-block;
      background-color: #ffd700;
      color: #0a1f44;
      padding: 15px 30px;
      border-radius: 5px;
      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-login-ph__hero-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-com-login-ph__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .page-8k8-com-login-ph__section--dark {
      background-color: #0a1f44;
      color: #fff;
    }

    .page-8k8-com-login-ph__section-title {
      font-size: 2.5em;
      color: #0a1f44;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-ph__section-title--dark {
      color: #ffd700;
    }

    .page-8k8-com-login-ph__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }

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

    /* Feature Card */
    .page-8k8-com-login-ph__feature-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 5px solid #004d99;
    }

    .page-8k8-com-login-ph__feature-card--dark {
      background-color: #1a3a60;
      color: #fff;
      border-top-color: #ffd700;
    }

    .page-8k8-com-login-ph__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .page-8k8-com-login-ph__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #ffd700;
    }

    .page-8k8-com-login-ph__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #0a1f44;
    }

    .page-8k8-com-login-ph__feature-title--dark {
      color: #ffd700;
    }

    .page-8k8-com-login-ph__feature-description {
      font-size: 1em;
      color: #666;
    }

    .page-8k8-com-login-ph__feature-description--dark {
      color: #ccc;
    }

    /* Steps Section */
    .page-8k8-com-login-ph__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-ph__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: #f2f7fc;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      border-left: 5px solid #004d99;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-ph__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #004d99;
      background-color: #e0f2f7;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-8k8-com-login-ph__step-content h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #0a1f44;
    }

    .page-8k8-com-login-ph__step-content p {
      margin: 0;
      color: #555;
    }

    /* Product Display Section */
    .page-8k8-com-login-ph__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-com-login-ph__product-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login-ph__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .page-8k8-com-login-ph__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com-login-ph__product-info {
      padding: 20px;
    }

    .page-8k8-com-login-ph__product-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #0a1f44;
    }

    .page-8k8-com-login-ph__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-ph__product-button {
      background-color: #004d99;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login-ph__product-button:hover {
      background-color: #003366;
    }

    /* FAQ Section */
    .page-8k8-com-login-ph__faq-section {
      background-color: #f2f7fc;
    }

    .page-8k8-com-login-ph__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .page-8k8-com-login-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-ph__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-8k8-com-login-ph__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0a1f44;
      pointer-events: none; /* Prevent text selection interfering with click */
    }

    .page-8k8-com-login-ph__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #004d99;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon interfering with click */
    }

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for close */
      color: #e74c3c;
    }

    .page-8k8-com-login-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question's horizontal padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

    /* Call to Action Section */
    .page-8k8-com-login-ph__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(90deg, #004d99, #0a1f44);
      color: #fff;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-8k8-com-login-ph__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .page-8k8-com-login-ph__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-ph__cta-button {
      display: inline-block;
      background-color: #ffd700;
      color: #0a1f44;
      padding: 15px 30px;
      border-radius: 5px;
      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-login-ph__cta-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    /* Images */
    .page-8k8-com-login-ph img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      object-fit: cover;
      border-radius: 8px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-ph__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 2em;
      }
      .page-8k8-com-login-ph__cta-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-ph__container {
        padding: 15px;
      }
      .page-8k8-com-login-ph__hero-section {
        padding: 40px 15px;
      }
      .page-8k8-com-login-ph__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login-ph__section {
        padding: 30px 0;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-ph__grid,
      .page-8k8-com-login-ph__product-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-login-ph__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login-ph__step-number {
        margin-bottom: 15px;
      }
      .page-8k8-com-login-ph__step-content h3 {
        font-size: 1.2em;
      }
      .page-8k8-com-login-ph__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com-login-ph__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login-ph__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-com-login-ph__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-com-login-ph__cta-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login-ph__cta-description {
        font-size: 1em;
      }
      /* Ensure all images are responsive */
      .page-8k8-com-login-ph img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-ph__product-image {
        height: 180px !important;
      }
      .page-8k8-com-login-ph__feature-icon {
        width: 60px !important;
        height: 60px !important;
      }
      .page-8k8-com-login-ph__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-ph__step-content p,
      .page-8k8-com-login-ph__feature-description,
      .page-8k8-com-login-ph__product-description,
      .page-8k8-com-login-ph__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-ph__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-login-ph__hero-button,
      .page-8k8-com-login-ph__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login-ph__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-com-login-ph__product-title {
        font-size: 1.1em;
      }
      .page-8k8-com-login-ph__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-com-login-ph__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-com-login-ph__cta-title {
        font-size: 1.4em;
      }
    }
  