
    /* CSS for page-8k8-6 */
    :root {
        --8k8-primary-color: #FFD700; /* Gold */
        --8k8-secondary-color: #000080; /* Navy Blue */
        --8k8-accent-color: #FF4500; /* OrangeRed */
        --8k8-text-color: #FFFFFF;
        --8k8-dark-bg: #1A1A2E;
        --8k8-light-bg: #2C2C4E;
        --8k8-border-color: #4CAF50; /* Green for subtle borders */
    }

    .page-8k8-6 {
        font-family: 'Arial', sans-serif;
        color: var(--8k8-text-color);
        background-color: var(--8k8-dark-bg);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Default padding-top if body padding is not set by shared.css */
    }

    /* Fixed Navigation for Register/Login */
    .page-8k8-6__fixed-nav {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-8k8-6__fixed-nav-button {
        background-color: var(--8k8-primary-color);
        color: var(--8k8-secondary-color);
        border: none;
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
    }

    .page-8k8-6__fixed-nav-button:hover {
        background-color: #FFC400;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .page-8k8-6__fixed-nav {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            bottom: 10px;
            justify-content: space-around;
            right: auto;
        }

        .page-8k8-6__fixed-nav-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 14px;
        }
    }


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

    .page-8k8-6__hero-section {
        background: linear-gradient(135deg, var(--8k8-dark-bg) 0%, var(--8k8-light-bg) 100%);
        padding: 80px 20px;
        text-align: center;
        border-bottom: 5px solid var(--8k8-primary-color);
        position: relative;
        overflow: hidden;
        padding-top: 10px; /* Adhering to fixed nav bar spacing rule */
    }

    .page-8k8-6__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:pattern:1920x1080:abstract,geometric,subtle]');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }

    .page-8k8-6__hero-content {
        position: relative;
        z-index: 1;
    }

    .page-8k8-6__hero-title {
        font-size: 3.5em;
        color: var(--8k8-primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__hero-description {
        font-size: 1.3em;
        color: var(--8k8-text-color);
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    .page-8k8-6__button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8k8-6__button {
        background-color: var(--8k8-primary-color);
        color: var(--8k8-secondary-color);
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-6__button--secondary {
        background-color: var(--8k8-accent-color);
        color: var(--8k8-text-color);
    }

    .page-8k8-6__button:hover {
        background-color: #FFC400;
        transform: translateY(-3px);
    }

    .page-8k8-6__button--secondary:hover {
        background-color: #E63900;
    }

    .page-8k8-6__section {
        padding: 60px 20px;
        background-color: var(--8k8-light-bg);
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__section--dark {
        background-color: var(--8k8-dark-bg);
    }

    .page-8k8-6__section-title {
        font-size: 2.5em;
        color: var(--8k8-primary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-8k8-6__section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--8k8-accent-color);
        border-radius: 2px;
    }

    .page-8k8-6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-8k8-6__grid-item {
        background-color: var(--8k8-dark-bg);
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--8k8-border-color);
    }

    .page-8k8-6__grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__grid-item-img { /* New class for the actual image */
        max-width: 100%; /* Ensure it fits its container */
        height: auto;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__grid-item-title {
        font-size: 1.5em;
        color: var(--8k8-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-6__grid-item-description {
        font-size: 1em;
        color: var(--8k8-text-color);
    }

    .page-8k8-6__steps-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .page-8k8-6__step-item {
        background-color: var(--8k8-dark-bg);
        padding: 25px;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--8k8-accent-color);
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-6__step-number {
        font-size: 2em;
        font-weight: bold;
        color: var(--8k8-primary-color);
        flex-shrink: 0;
        width: 40px;
        text-align: center;
    }

    .page-8k8-6__step-content {
        flex-grow: 1;
    }

    .page-8k8-6__step-title {
        font-size: 1.4em;
        color: var(--8k8-primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-6__step-description {
        font-size: 1em;
        color: var(--8k8-text-color);
    }

    .page-8k8-6__image-container {
        text-align: center;
        margin: 40px 0;
        overflow: hidden; /* Required for image container responsiveness */
        width: 100%; /* Required for image container responsiveness */
        max-width: 100%; /* Required for image container responsiveness */
        box-sizing: border-box; /* Required for image container responsiveness */
    }

    .page-8k8-6__image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        display: block;
        margin: 0 auto;
    }

    /* FAQ Section Styles */
    .page-8k8-6__faq-section {
        padding: 60px 20px;
        background-color: var(--8k8-dark-bg);
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__faq-item {
        margin-bottom: 15px;
        border: 1px solid var(--8k8-border-color);
        border-radius: 8px;
        overflow: hidden;
        background-color: var(--8k8-light-bg);
    }

    .page-8k8-6__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--8k8-secondary-color);
        color: var(--8k8-primary-color);
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
        background-color: #000066;
    }

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

    .page-8k8-6__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1;
        width: 30px;
        text-align: center;
        flex-shrink: 0;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-6__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        background-color: var(--8k8-dark-bg);
        color: var(--8k8-text-color);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 0.95em;
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* General responsive adjustments */
    @media (max-width: 1024px) {
        .page-8k8-6__hero-title {
            font-size: 3em;
        }
        .page-8k8-6__hero-description {
            font-size: 1.2em;
        }
        .page-8k8-6__section-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-6 {
            padding-top: var(--header-offset, 122px); /* Ensure padding for header */
        }
        .page-8k8-6__hero-section {
            padding: 60px 15px;
        }
        .page-8k8-6__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-6__hero-description {
            font-size: 1em;
        }
        .page-8k8-6__button-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-8k8-6__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        .page-8k8-6__section {
            padding: 40px 15px;
        }
        .page-8k8-6__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .page-8k8-6__grid {
            grid-template-columns: 1fr;
        }
        .page-8k8-6__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            border-left: none;
            border-top: 5px solid var(--8k8-accent-color);
            box-sizing: border-box !important; /* List item requirement */
            width: 100% !important; /* List item requirement */
            max-width: 100% !important; /* List item requirement */
            margin-left: 0 !important; /* List item requirement */
            margin-right: 0 !important; /* List item requirement */
            word-wrap: break-word !important; /* Text wrapping */
            overflow-wrap: break-word !important; /* Text wrapping */
            word-break: break-word !important; /* Text wrapping for long keywords */
        }
        .page-8k8-6__steps-list {
            padding: 0 !important; /* List container requirement */
            margin-left: 0 !important; /* List container requirement */
            margin-right: 0 !important; /* List container requirement */
            width: 100% !important; /* List container requirement */
            max-width: 100% !important; /* List container requirement */
            box-sizing: border-box !important; /* List container requirement */
        }
        .page-8k8-6__image-container {
            padding: 0 10px !important; /* Adjust padding for mobile to prevent overflow */
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
        }
        .page-8k8-6__image, .page-8k8-6__grid-item-img {
            max-width: 100% !important; /* Image responsiveness */
            height: auto !important; /* Image responsiveness */
        }
        .page-8k8-6__faq-question {
            padding: 12px 15px;
        }
        .page-8k8-6__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-6__faq-answer {
            padding: 15px 15px !important; /* Adjusted for mobile */
            word-wrap: break-word !important; /* Text wrapping */
            overflow-wrap: break-word !important; /* Text wrapping */
            word-break: break-word !important; /* Text wrapping for long keywords */
        }
    }

    @media (max-width: 480px) {
        .page-8k8-6__hero-title {
            font-size: 2em;
        }
        .page-8k8-6__section-title {
            font-size: 1.8em;
        }
        .page-8k8-6__fixed-nav-button {
            font-size: 12px;
            padding: 8px 10px;
        }
    }
  