
    :root {
        --page-primary-color: #007bff;
        --page-secondary-color: #6c757d;
        --page-background-dark: #1a1a1a;
        --page-text-light: #f8f9fa;
        --page-text-dark: #343a40;
        --page-accent-color: #ffc107;
        --page-card-background: #2a2a2a;
        --page-border-color: #444;
    }

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

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

    .page-8k8-com-login-password__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 0 80px; /* Adjusted padding-top for header offset */
        background-color: #0d0d0d;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .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;
    }

    .page-8k8-com-login-password__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-password__hero-title {
        font-size: 3.2em;
        color: var(--page-accent-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-8k8-com-login-password__hero-description {
        font-size: 1.2em;
        color: var(--page-text-light);
        margin-bottom: 30px;
    }

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

    .page-8k8-com-login-password__button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-8k8-com-login-password__section {
        padding: 60px 0;
        background-color: var(--page-background-dark);
    }

    .page-8k8-com-login-password__section--alt {
        background-color: #121212;
    }

    .page-8k8-com-login-password__section-title {
        font-size: 2.5em;
        color: var(--page-accent-color);
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

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

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

    .page-8k8-com-login-password__card {
        background-color: var(--page-card-background);
        border: 1px solid var(--page-border-color);
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-com-login-password__card-icon {
        width: 250px; /* Minimum 200px */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-8k8-com-login-password__card-title {
        font-size: 1.5em;
        color: var(--page-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-com-login-password__card-description {
        color: var(--page-text-light);
        font-size: 0.95em;
    }

    .page-8k8-com-login-password__steps-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .page-8k8-com-login-password__steps-item {
        background-color: var(--page-card-background);
        border: 1px solid var(--page-border-color);
        border-radius: 10px;
        padding: 30px;
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        box-sizing: border-box;
    }

    .page-8k8-com-login-password__steps-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: var(--page-accent-color);
        color: var(--page-background-dark);
        border-radius: 50%;
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-com-login-password__steps-description {
        color: var(--page-text-light);
        font-size: 0.95em;
    }

    .page-8k8-com-login-password__image-full-width {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 40px;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-8k8-com-login-password__faq-section {
        padding: 60px 0;
        background-color: var(--page-background-dark);
    }

    .page-8k8-com-login-password__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-com-login-password__faq-item {
        background-color: var(--page-card-background);
        border: 1px solid var(--page-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-primary-color);
        pointer-events: none; /* Prevent blocking click event */
    }

    .page-8k8-com-login-password__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent blocking click event */
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
        transform: rotate(45deg);
    }

    .page-8k8-com-login-password__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--page-text-light);
        background-color: var(--page-card-background);
        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-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-8k8-com-login-password__promo-banner {
        text-align: center;
        padding: 50px 20px;
        background: linear-gradient(90deg, #0056b3, #007bff, #0056b3);
        border-radius: 10px;
        margin: 60px auto;
        max-width: 1000px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-password__promo-title {
        font-size: 2.8em;
        color: var(--page-accent-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-8k8-com-login-password__promo-description {
        font-size: 1.3em;
        color: var(--page-text-light);
        margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-8k8-com-login-password__hero-title {
            font-size: 2.8em;
        }
        .page-8k8-com-login-password__section-title {
            font-size: 2.2em;
        }
        .page-8k8-com-login-password__promo-title {
            font-size: 2.4em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com-login-password__hero-section {
            padding: 10px 0 60px;
        }
        .page-8k8-com-login-password__hero-content {
            padding: 30px 15px;
        }
        .page-8k8-com-login-password__hero-title {
            font-size: 2.2em;
        }
        .page-8k8-com-login-password__hero-description {
            font-size: 1em;
        }
        .page-8k8-com-login-password__section {
            padding: 40px 0;
        }
        .page-8k8-com-login-password__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-com-login-password__content-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-8k8-com-login-password__steps-list {
            flex-direction: column;
            gap: 20px;
        }
        .page-8k8-com-login-password__steps-item {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 25px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8k8-com-login-password__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-com-login-password__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-com-login-password__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-com-login-password__promo-banner {
            padding: 30px 15px;
            margin: 40px auto;
        }
        .page-8k8-com-login-password__promo-title {
            font-size: 1.8em;
        }
        .page-8k8-com-login-password__promo-description {
            font-size: 1.1em;
        }

        /* Image responsiveness */
        .page-8k8-com-login-password__card-icon,
        .page-8k8-com-login-password__image-full-width {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-login-password__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-com-login-password__section-title {
            font-size: 1.6em;
        }
        .page-8k8-com-login-password__promo-title {
            font-size: 1.6em;
        }
        .page-8k8-com-login-password__button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }
  