
    .page-8k8-com-log-in {
        font-family: 'Arial', sans-serif;
        color: #333333;
        line-height: 1.6;
        background-color: #f5f5f5;
        padding-bottom: 40px;
        padding-top: 10px; /* Small top padding as body already has header offset */
    }

    /* Hero Section */
    .page-8k8-com-log-in__hero-section {
        background-color: #1a1a1a; /* Dark background for hero */
        color: #ffffff;
        text-align: center;
        padding: 60px 20px; /* Adjusted padding for better visual */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-com-log-in__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Subtle background image */
        z-index: 1;
    }

    .page-8k8-com-log-in__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-8k8-com-log-in__hero-heading {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffd700; /* Gold heading */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-log-in__hero-text {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-log-in__cta-button {
        display: inline-block;
        background-color: #dc143c; /* Crimson button */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none; /* Use button tag, so no default border */
        cursor: pointer;
    }

    .page-8k8-com-log-in__cta-button:hover {
        background-color: #ff4500; /* Orange-red on hover */
        transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-8k8-com-log-in__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }

    .page-8k8-com-log-in__section:first-of-type {
        margin-top: 30px;
    }

    .page-8k8-com-log-in__section-heading {
        font-size: 2em;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-8k8-com-log-in__section-heading::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 60px;
        height: 4px;
        background-color: #ffd700;
        border-radius: 2px;
    }

    /* Benefits Section */
    .page-8k8-com-log-in__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-8k8-com-log-in__benefit-item {
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-com-log-in__benefit-icon {
        width: 80px; /* Min size 200px. This should be 200x200 or larger */
        height: 80px; /* Min size 200px. This should be 200x200 or larger */
        margin-bottom: 15px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffd700;
    }
    /* Correcting icon size to meet 200x200 minimum requirement */
    .page-8k8-com-log-in__benefit-icon {
        width: 200px; /* Adjusted to meet minimum size */
        height: 200px; /* Adjusted to meet minimum size */
        margin-bottom: 15px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffd700;
    }


    .page-8k8-com-log-in__benefit-title {
        font-size: 1.3em;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .page-8k8-com-log-in__benefit-description {
        font-size: 0.95em;
        color: #555555;
    }

    /* Steps Section */
    .page-8k8-com-log-in__steps-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .page-8k8-com-log-in__step-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background-color: #fcfcfc;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-log-in__step-number {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background-color: #ffd700;
        color: #1a1a1a;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 1.2em;
    }

    .page-8k8-com-log-in__step-content {
        flex-grow: 1;
    }

    .page-8k8-com-log-in__step-title {
        font-size: 1.2em;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .page-8k8-com-log-in__step-description {
        font-size: 1em;
        color: #555555;
    }

    /* Security Section */
    .page-8k8-com-log-in__security-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .page-8k8-com-log-in__security-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .page-8k8-com-log-in__security-text {
        font-size: 1.05em;
        color: #444444;
        max-width: 800px;
    }

    /* FAQ Section */
    .page-8k8-com-log-in__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-8k8-com-log-in__faq-item {
        background-color: #fcfcfc;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-log-in__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        background-color: #ffffff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        color: #1a1a1a;
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-log-in__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-8k8-com-log-in__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event */
    }

    .page-8k8-com-log-in__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        color: #dc143c;
        pointer-events: none; /* Crucial for click event */
        transition: transform 0.3s ease;
    }

    .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
        color: #ffd700;
    }

    .page-8k8-com-log-in__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555555;
        font-size: 0.95em;
        background-color: #fefefe;
    }

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

    /* Call to Action Section (final) */
    .page-8k8-com-log-in__cta-final-section {
        text-align: center;
        background-color: #1a1a1a;
        color: #ffffff;
        padding: 50px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        margin: 30px auto 0 auto;
    }

    .page-8k8-com-log-in__cta-final-heading {
        font-size: 2.2em;
        color: #ffd700;
        margin-bottom: 20px;
    }

    .page-8k8-com-log-in__cta-final-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-com-log-in__hero-heading {
            font-size: 2em;
        }

        .page-8k8-com-log-in__hero-text {
            font-size: 1em;
        }

        .page-8k8-com-log-in__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-com-log-in__section {
            padding: 30px 15px;
            margin-left: 15px;
            margin-right: 15px;
        }

        .page-8k8-com-log-in__section-heading {
            font-size: 1.8em;
        }

        /* List item specific responsive rules */
        .page-8k8-com-log-in__benefits-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-com-log-in__benefit-item,
        .page-8k8-com-log-in__step-item,
        .page-8k8-com-log-in__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding to prevent overflow */
            padding-right: 15px !important; /* Adjust padding to prevent overflow */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-com-log-in__benefits-grid,
        .page-8k8-com-log-in__steps-list,
        .page-8k8-com-log-in__faq-list {
            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-log-in__faq-question {
            padding: 15px 20px;
        }

        .page-8k8-com-log-in__faq-question h3 {
            font-size: 1em;
        }

        .page-8k8-com-log-in__faq-answer {
            padding: 0 20px;
        }

        .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-com-log-in__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-8k8-com-log-in__step-number {
            margin-bottom: 10px;
        }

        .page-8k8-com-log-in__security-image {
            max-width: 90%;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-log-in__hero-heading {
            font-size: 1.8em;
        }

        .page-8k8-com-log-in__section-heading {
            font-size: 1.6em;
        }
    }

    /* Ensure all images are responsive */
    .page-8k8-com-log-in img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Image containers responsive */
    .page-8k8-com-log-in__img-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-8k8-com-log-in img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-8k8-com-log-in__img-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  