
    /* Global styles for this specific page */
    .page-8k8-com-register {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-8k8-com-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8-com-register__hero-section {
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

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

    .page-8k8-com-register__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-8k8-com-register__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      color: #ffffff; /* Ensure high contrast */
    }

    .page-8k8-com-register__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0; /* Ensure good contrast */
    }

    .page-8k8-com-register__hero-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-register__hero-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-com-register__section {
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-register__section:nth-of-type(even) {
      background-color: #eef4f8;
    }

    .page-8k8-com-register__section-title {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-8k8-com-register__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #555;
    }

    /* Benefits Section */
    .page-8k8-com-register__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-register__benefit-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-register__benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .page-8k8-com-register__benefit-icon {
      width: 200px; /* Enforce minimum image size */
      height: 200px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: #007bff; /* Fallback/background for icon area */
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 2em;
      font-weight: bold;
      object-fit: cover;
    }
    .page-8k8-com-register__benefit-icon img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 50%; /* If the image itself is circular */
        object-fit: cover;
    }

    .page-8k8-com-register__benefit-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 15px;
      font-weight: 600;
      text-align: center;
    }

    .page-8k8-com-register__benefit-description {
      font-size: 1em;
      color: #666;
      text-align: center;
    }

    /* How to Register Section */
    .page-8k8-com-register__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-8k8-com-register__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      text-align: left;
      box-sizing: border-box;
      width: 100%; /* Ensure full width for list items */
    }

    .page-8k8-com-register__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #007bff;
      margin-right: 20px;
      flex-shrink: 0;
    }

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

    .page-8k8-com-register__step-title {
      font-size: 1.6em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-register__step-description {
      font-size: 1.1em;
      color: #555;
    }

    /* Promotion CTA */
    .page-8k8-com-register__promo-cta {
      background-color: #28a745;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-register__promo-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: 700;
      color: #ffffff; /* Ensure high contrast */
    }

    .page-8k8-com-register__promo-description {
      font-size: 1.2em;
      max-width: 700px;
      margin: 0 auto 30px auto;
      color: #e0e0e0; /* Ensure good contrast */
    }

    .page-8k8-com-register__promo-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-register__promo-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Payment Methods Section */
    .page-8k8-com-register__payment-methods {
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-register__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-register__payment-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      width: 200px; /* Enforce minimum image size */
      height: 200px; /* Enforce minimum image size */
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #333;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-register__payment-item:hover {
      transform: translateY(-5px);
    }
    .page-8k8-com-register__payment-item img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }


    /* FAQ Section */
    .page-8k8-com-register__faq-section {
      padding: 60px 20px;
      background-color: #f0f8ff;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-register__faq-grid {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-8k8-com-register__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #007bff;
      color: #fff;
      font-size: 1.2em;
      font-weight: 600;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-register__faq-question:hover {
      background-color: #0056b3;
    }

    .page-8k8-com-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-register__faq-item.active .page-8k8-com-register__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-8k8-com-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #e9f5ff;
      font-size: 1.1em;
      line-height: 1.8;
    }

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

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

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

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

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

      .page-8k8-com-register__benefit-card {
        padding: 20px;
      }

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

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

      .page-8k8-com-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

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

      .page-8k8-com-register__step-description {
        font-size: 1em;
      }

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

      .page-8k8-com-register__promo-description {
        font-size: 1em;
      }

      .page-8k8-com-register__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-com-register__payment-item {
        width: 100% !important; /* Ensure payment items are full width on mobile */
        max-width: 100%;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        min-width: 150px; /* Adjust min width for mobile */
        min-height: 150px;
      }

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

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

      .page-8k8-com-register__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
      }

      /* Responsive list item adjustments */
      .page-8k8-com-register__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register__steps-list > li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-register__benefits-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register__benefits-grid > div { /* Target benefit cards */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-register__faq-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-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-register__faq-question {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-register__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-register__payment-methods .page-8k8-com-register__payment-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-register__payment-methods .page-8k8-com-register__payment-grid .page-8k8-com-register__payment-item {
        width: calc(50% - 20px) !important; /* Two items per row on mobile */
        max-width: calc(50% - 20px) !important;
        min-width: unset; /* Allow smaller width for two columns */
        min-height: unset;
        height: 120px; /* Fixed height for payment logos */
        box-sizing: border-box !important;
        margin: 10px !important;
        flex-shrink: 0;
      }
      .page-8k8-com-register__payment-methods .page-8k8-com-register__payment-grid .page-8k8-com-register__payment-item img {
        max-width: 90%;
        max-height: 90%;
      }

      /* Image responsiveness */
      .page-8k8-com-register img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        min-width: 200px !important;
        min-height: 200px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-register__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-register__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-register__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-com-register__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-register__promo-title {
        font-size: 1.6em;
      }
      .page-8k8-com-register__payment-methods .page-8k8-com-register__payment-grid .page-8k8-com-register__payment-item {
        width: calc(100% - 20px) !important; /* Single item per row on very small screens */
        max-width: calc(100% - 20px) !important;
        margin: 10px auto !important;
      }
    }
  