
    /* Page-specific CSS for 8k8 com login password */
    :root {
        --primary-color: #FFD700; /* Gold-like color for accents */
        --secondary-color: #4CAF50; /* Green for success/call to action */
        --dark-bg: #1a1a1a;
        --text-color-light: #f0f0f0;
        --text-color-dark: #333;
        --card-bg: #2a2a2a;
        --border-color: #444;
        --button-hover-bg: #e6c200;
        --faq-question-bg: #333;
        --faq-answer-bg: #222;
        --shadow-color: rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-password {
        font-family: 'Arial', sans-serif;
        background-color: var(--dark-bg);
        color: var(--text-color-light);
        line-height: 1.6;
        padding-bottom: 40px;
    }

    .page-8k8-com-login-password__hero-section {
        position: relative;
        padding: 10px 20px 80px; /* Added 10px padding-top for header offset */
        text-align: center;
        background-color: #0d0d0d;
        overflow: hidden;
        border-bottom: 2px solid var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px; /* Ensure hero section has a minimum height */
    }

    .page-8k8-com-login-password__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        filter: brightness(0.7); /* Slightly darken image for better text contrast */
    }

    .page-8k8-com-login-password__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        box-shadow: 0 8px 20px var(--shadow-color);
    }

    .page-8k8-com-login-password__hero-title {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    }

    .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.3em;
        color: var(--text-color-light);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-login-password__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--dark-bg);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
        box-shadow: 0 4px 10px var(--shadow-color);
    }

    .page-8k8-com-login-password__button:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    .page-8k8-com-login-password__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid var(--border-color);
    }

    .page-8k8-com-login-password__section:last-of-type {
        border-bottom: none;
    }

    .page-8k8-com-login-password__section-title {
        font-size: 2.2em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

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

    .page-8k8-com-login-password__content-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 50px;
        gap: 30px;
    }

    .page-8k8-com-login-password__content-block--reverse {
        flex-direction: row-reverse;
    }

    .page-8k8-com-login-password__text-content {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        background-color: var(--card-bg);
        border-radius: 8px;
        box-shadow: 0 4px 15px var(--shadow-color);
    }

    .page-8k8-com-login-password__text-content h3 {
        color: var(--primary-color);
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .page-8k8-com-login-password__text-content p {
        margin-bottom: 15px;
        color: var(--text-color-light);
    }

    .page-8k8-com-login-password__image-container {
        flex: 1;
        min-width: 300px;
        text-align: center;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px var(--shadow-color);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-login-password__image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    .page-8k8-com-login-password__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-8k8-com-login-password__list-item {
        background-color: var(--card-bg);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 10px var(--shadow-color);
        border-left: 5px solid var(--primary-color);
        box-sizing: border-box;
    }

    .page-8k8-com-login-password__list-item h4 {
        color: var(--primary-color);
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .page-8k8-com-login-password__list-item p {
        color: var(--text-color-light);
    }

    /* FAQ Section Styles */
    .page-8k8-com-login-password__faq-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-com-login-password__faq-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-8k8-com-login-password__faq-item {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        background-color: var(--faq-question-bg);
        box-shadow: 0 2px 8px var(--shadow-color);
    }

    .page-8k8-com-login-password__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: var(--faq-question-bg);
        color: var(--primary-color);
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-login-password__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from intercepting click */
        flex-grow: 1;
        line-height: 1.4;
    }

    .page-8k8-com-login-password__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease, color 0.3s ease;
        pointer-events: none; /* Prevent toggle from intercepting click */
        color: var(--text-color-light);
        min-width: 20px; /* Ensure consistent width for the toggle icon */
        text-align: center;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
        transform: rotate(45deg); /* Rotates the plus sign to an 'X' or changes to minus by JS */
        color: var(--primary-color);
    }

    .page-8k8-com-login-password__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: var(--faq-answer-bg);
        color: var(--text-color-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .page-8k8-com-login-password__hero-section {
            padding-bottom: 60px;
            min-height: 300px;
        }

        .page-8k8-com-login-password__hero-content {
            padding: 30px 15px;
        }

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

        .page-8k8-com-login-password__hero-subtitle {
            font-size: 1em;
        }

        .page-8k8-com-login-password__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-com-login-password__section {
            padding: 40px 15px;
        }

        .page-8k8-com-login-password__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8k8-com-login-password__content-block {
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .page-8k8-com-login-password__content-block--reverse {
            flex-direction: column; /* Stacks normally on mobile */
        }

        .page-8k8-com-login-password__text-content {
            padding: 15px;
            min-width: unset;
            width: 100%;
        }

        .page-8k8-com-login-password__text-content h3 {
            font-size: 1.3em;
        }

        .page-8k8-com-login-password__image-container {
            min-width: unset;
            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-login-password__image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-8k8-com-login-password__list {
            grid-template-columns: 1fr;
            gap: 20px;
            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-password__list-item {
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-login-password__list-item h4 {
            font-size: 1.2em;
        }

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

        .page-8k8-com-login-password__faq-answer {
            padding: 15px 20px;
        }
    }
  