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

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

    .page-8k8-com-register-login__section-title {
        font-size: 2.2em;
        color: #0056b3; /* Primary brand color */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-8k8-com-register-login__section-title strong {
        color: #cc0000; /* Accent color for keywords */
    }

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

    /* Hero Section */
    .page-8k8-com-register-login__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
        color: #fff;
        padding: 60px 20px; /* This is internal padding for the hero content */
        position: relative;
        overflow: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__hero-content {
        z-index: 1;
        max-width: 900px;
    }

    .page-8k8-com-register-login__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-8k8-com-register-login__hero-title strong {
        color: #ffc107; /* Yellow accent for keyword */
    }

    .page-8k8-com-register-login__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-register-login__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8k8-com-register-login__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        border: none;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__button--primary {
        background-color: #ffc107; /* Yellow */
        color: #333;
    }

    .page-8k8-com-register-login__button--primary:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-8k8-com-register-login__button--secondary {
        background-color: #fff;
        color: #0056b3;
        border: 2px solid #0056b3;
    }

    .page-8k8-com-register-login__button--secondary:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }

    .page-8k8-com-register-login__button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }

    .page-8k8-com-register-login__hero-image-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 900px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-radius: 10px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Registration Steps Section */
    .page-8k8-com-register-login__registration-steps {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .page-8k8-com-register-login__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-8k8-com-register-login__step-card {
        background-color: #fefefe;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__step-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-com-register-login__step-icon {
        width: 200px;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-8k8-com-register-login__step-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-bottom: 15px;
    }

    .page-8k8-com-register-login__step-text {
        font-size: 1em;
        color: #666;
    }

    /* Login Process Section */
    .page-8k8-com-register-login__login-process {
        background-color: #f0f8ff; /* Light blue background */
    }

    .page-8k8-com-register-login__login-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .page-8k8-com-register-login__login-image-wrapper {
        width: 100%;
        max-width: 600px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__login-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-com-register-login__login-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 700px;
    }

    .page-8k8-com-register-login__login-list-item {
        background-color: #fff;
        margin-bottom: 20px;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border-left: 5px solid #007bff;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__login-list-title {
        font-size: 1.3em;
        color: #0056b3;
        margin-bottom: 10px;
    }

    .page-8k8-com-register-login__login-list-text {
        color: #555;
    }

    /* Benefits Section */
    .page-8k8-com-register-login__benefits {
        background-color: #fff;
        border-top: 1px solid #eee;
    }

    .page-8k8-com-register-login__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-8k8-com-register-login__benefit-card {
        background-color: #fefefe;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__benefit-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-com-register-login__benefit-icon {
        width: 200px;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-8k8-com-register-login__benefit-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-bottom: 15px;
    }

    .page-8k8-com-register-login__benefit-text {
        font-size: 1em;
        color: #666;
    }

    /* CTA Bottom Section */
    .page-8k8-com-register-login__cta-bottom {
        background-color: #e6f7ff;
        text-align: center;
        padding: 60px 20px;
    }

    /* FAQ Section */
    .page-8k8-com-register-login__faq-section {
        background-color: #f9f9f9;
    }

    .page-8k8-com-register-login__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-8k8-com-register-login__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-com-register-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #007bff; /* Blue for question */
        color: #fff;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-8k8-com-register-login__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-8k8-com-register-login__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event on parent div */
    }

    .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-com-register-login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #fefefe;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

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

    .page-8k8-com-register-login__faq-answer p {
        margin: 0;
        font-size: 1em;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-8k8-com-register-login__section {
            padding: 30px 15px;
        }

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

        .page-8k8-com-register-login__hero-section {
            padding: 40px 15px;
        }

        .page-8k8-com-register-login__hero-title {
            font-size: 2.2em;
        }

        .page-8k8-com-register-login__hero-description {
            font-size: 1.1em;
        }

        .page-8k8-com-register-login__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-8k8-com-register-login__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-8k8-com-register-login__steps-container,
        .page-8k8-com-register-login__benefits-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-com-register-login__step-card,
        .page-8k8-com-register-login__benefit-card {
            padding: 20px;
        }

        /* Ensure all images are responsive */
        .page-8k8-com-register-login img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-register-login__hero-image-wrapper,
        .page-8k8-com-register-login__login-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        /* List item mobile responsiveness */
        .page-8k8-com-register-login__login-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-register-login__login-list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Reduce padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-register-login__faq-question,
        .page-8k8-com-register-login__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .page-8k8-com-register-login__faq-question h3 {
            font-size: 1.1em;
        }
    }
    @media (max-width: 480px) {
        .page-8k8-com-register-login__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-com-register-login__section-title {
            font-size: 1.6em;
        }
        .page-8k8-com-register-login__hero-description {
            font-size: 1em;
        }
    }
  