
    /* CSS styles for page-774pub-com-login-password-2 */
    :root {
        --page-774pub-com-login-password-2__primary-color: #007bff; /* A blue for primary actions */
        --page-774pub-com-login-password-2__secondary-color: #6c757d; /* A gray for secondary elements */
        --page-774pub-com-login-password-2__accent-color: #ffc107; /* A yellow for highlights */
        --page-774pub-com-login-password-2__dark-background: #1a1a1a; /* Dark background for sections */
        --page-774pub-com-login-password-2__light-background: #ffffff; /* Light background for sections */
        --page-774pub-com-login-password-2__text-color-light: #f8f9fa; /* Light text on dark backgrounds */
        --page-774pub-com-login-password-2__text-color-dark: #343a40; /* Dark text on light backgrounds */
        --page-774pub-com-login-password-2__border-color: #e0e0e0; /* Border color */
        --page-774pub-com-login-password-2__spacing-unit: 1rem; /* Base spacing unit */
    }

    .page-774pub-com-login-password-2 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-774pub-com-login-password-2__text-color-dark);
        background-color: #f4f4f4;
    }

    .page-774pub-com-login-password-2__section {
        padding: calc(4 * var(--page-774pub-com-login-password-2__spacing-unit)) calc(2 * var(--page-774pub-com-login-password-2__spacing-unit));
        margin-bottom: calc(2 * var(--page-774pub-com-login-password-2__spacing-unit));
        background-color: var(--page-774pub-com-login-password-2__light-background);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-774pub-com-login-password-2__section--dark {
        background-color: var(--page-774pub-com-login-password-2__dark-background);
        color: var(--page-774pub-com-login-password-2__text-color-light);
    }

    .page-774pub-com-login-password-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 calc(var(--page-774pub-com-login-password-2__spacing-unit) * 2);
    }

    .page-774pub-com-login-password-2__hero-section {
        background: var(--page-774pub-com-login-password-2__dark-background);
        color: var(--page-774pub-com-login-password-2__text-color-light);
        text-align: center;
        padding: 80px 20px 60px; /* Adjust padding-top for fixed header if needed, but per instructions, body padding should handle it. */
        position: relative;
        overflow: hidden;
        border-radius: 0 0 12px 12px;
        padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }

    .page-774pub-com-login-password-2__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-774pub-com-login-password-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-774pub-com-login-password-2__hero-title {
        font-size: 3.2rem;
        margin-bottom: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 1.5);
        font-weight: 700;
        color: var(--page-774pub-com-login-password-2__accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-774pub-com-login-password-2__hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 2);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-774pub-com-login-password-2__button {
        display: inline-block;
        background-color: var(--page-774pub-com-login-password-2__primary-color);
        color: var(--page-774pub-com-login-password-2__text-color-light);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-774pub-com-login-password-2__button:hover {
        background-color: #0056b3; /* Darker shade of primary color */
        transform: translateY(-2px);
    }

    .page-774pub-com-login-password-2__button--secondary {
        background-color: var(--page-774pub-com-login-password-2__secondary-color);
    }

    .page-774pub-com-login-password-2__button--secondary:hover {
        background-color: #5a6268;
    }

    .page-774pub-com-login-password-2__content-title {
        font-size: 2.5rem;
        color: var(--page-774pub-com-login-password-2__dark-background);
        text-align: center;
        margin-bottom: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 3);
        font-weight: 700;
    }

    .page-774pub-com-login-password-2__content-title--dark {
        color: var(--page-774pub-com-login-password-2__text-color-light);
    }

    .page-774pub-com-login-password-2__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 2);
        margin-top: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 2);
    }

    .page-774pub-com-login-password-2__step-card {
        background-color: var(--page-774pub-com-login-password-2__light-background);
        padding: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 2);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
        border-top: 5px solid var(--page-774pub-com-login-password-2__primary-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-774pub-com-login-password-2__step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .page-774pub-com-login-password-2__step-icon {
        width: 100px;
        height: 100px;
        margin-bottom: var(--page-774pub-com-login-password-2__spacing-unit);
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--page-774pub-com-login-password-2__accent-color);
    }

    .page-774pub-com-login-password-2__step-number {
        font-size: 2rem;
        font-weight: bold;
        color: var(--page-774pub-com-login-password-2__primary-color);
        margin-bottom: var(--page-774pub-com-login-password-2__spacing-unit);
    }

    .page-774pub-com-login-password-2__step-title {
        font-size: 1.5rem;
        margin-bottom: var(--page-774pub-com-login-password-2__spacing-unit);
        color: var(--page-774pub-com-login-password-2__dark-background);
    }

    .page-774pub-com-login-password-2__image-feature {
        display: flex;
        align-items: center;
        gap: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 3);
        margin-top: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 3);
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .page-774pub-com-login-password-2__image-feature:nth-child(even) {
        flex-direction: row-reverse;
    }

    .page-774pub-com-login-password-2__feature-image-wrapper {
        flex: 1;
        min-width: 300px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-774pub-com-login-password-2__feature-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-774pub-com-login-password-2__feature-content {
        flex: 1;
        min-width: 300px;
    }

    .page-774pub-com-login-password-2__feature-title {
        font-size: 2rem;
        margin-bottom: var(--page-774pub-com-login-password-2__spacing-unit);
        color: var(--page-774pub-com-login-password-2__primary-color);
    }

    .page-774pub-com-login-password-2__feature-text {
        font-size: 1.1rem;
        margin-bottom: var(--page-774pub-com-login-password-2__spacing-unit);
    }

    .page-774pub-com-login-password-2__faq-section {
        background-color: var(--page-774pub-com-login-password-2__light-background);
        padding: calc(4 * var(--page-774pub-com-login-password-2__spacing-unit)) calc(2 * var(--page-774pub-com-login-password-2__spacing-unit));
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: calc(2 * var(--page-774pub-com-login-password-2__spacing-unit));
    }

    .page-774pub-com-login-password-2__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-774pub-com-login-password-2__faq-item {
        border-bottom: 1px solid var(--page-774pub-com-login-password-2__border-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .page-774pub-com-login-password-2__faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .page-774pub-com-login-password-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 15px 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--page-774pub-com-login-password-2__dark-background);
        user-select: none;
        transition: color 0.3s ease;
    }

    .page-774pub-com-login-password-2__faq-question:hover {
        color: var(--page-774pub-com-login-password-2__primary-color);
    }

    .page-774pub-com-login-password-2__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        color: inherit; /* Ensure h3 color changes with parent hover */
    }

    .page-774pub-com-login-password-2__faq-toggle {
        font-size: 1.8rem;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-774pub-com-login-password-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--page-774pub-com-login-password-2__secondary-color);
        font-size: 1.05rem;
    }

    .page-774pub-com-login-password-2__faq-item.active .page-774pub-com-login-password-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-774pub-com-login-password-2__faq-item.active .page-774pub-com-login-password-2__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-774pub-com-login-password-2__hero-title {
            font-size: 2.5rem;
        }

        .page-774pub-com-login-password-2__hero-subtitle {
            font-size: 1.2rem;
        }

        .page-774pub-com-login-password-2__content-title {
            font-size: 2rem;
        }

        .page-774pub-com-login-password-2__section {
            padding: calc(2 * var(--page-774pub-com-login-password-2__spacing-unit));
        }

        .page-774pub-com-login-password-2__steps-grid {
            grid-template-columns: 1fr;
        }

        .page-774pub-com-login-password-2__image-feature {
            flex-direction: column;
            gap: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 1.5);
        }

        .page-774pub-com-login-password-2__image-feature:nth-child(even) {
            flex-direction: column; /* Reset for mobile */
        }

        .page-774pub-com-login-password-2__feature-image-wrapper,
        .page-774pub-com-login-password-2__feature-content {
            min-width: unset;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important; /* Ensure no extra padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-774pub-com-login-password-2__feature-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-774pub-com-login-password-2__faq-question {
            font-size: 1.1rem;
            padding: 10px 0;
        }

        .page-774pub-com-login-password-2__faq-answer {
            font-size: 1rem;
            padding: 15px 10px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-774pub-com-login-password-2__faq-item.active .page-774pub-com-login-password-2__faq-answer {
            padding: 15px 10px !important;
        }

        /* List item specific responsive rules */
        .page-774pub-com-login-password-2__steps-grid .page-774pub-com-login-password-2__step-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 1.5) !important;
            padding-right: calc(var(--page-774pub-com-login-password-2__spacing-unit) * 1.5) !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
    }

    @media (max-width: 480px) {
        .page-774pub-com-login-password-2__hero-title {
            font-size: 2rem;
        }
        .page-774pub-com-login-password-2__hero-subtitle {
            font-size: 1rem;
        }
        .page-774pub-com-login-password-2__button {
            padding: 12px 25px;
            font-size: 1rem;
        }
    }
  