
    /* CSS for page-8k8-com-2 */
    :root {
        --page-8k8-com-2-primary-color: #ffd700; /* Gold */
        --page-8k8-com-2-secondary-color: #0a1128; /* Dark Blue */
        --page-8k8-com-2-accent-color: #e040fb; /* Purple */
        --page-8k8-com-2-text-color-light: #f0f0f0;
        --page-8k8-com-2-text-color-dark: #333333;
        --page-8k8-com-2-background-dark: #1a1a2e; /* Darker Blue */
        --page-8k8-com-2-background-light: #ffffff;
    }

    .page-8k8-com-2 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-com-2-text-color-light);
        background-color: var(--page-8k8-com-2-background-dark);
        line-height: 1.6;
        padding-bottom: 50px; /* Space for footer placeholder */
    }

    /* Fixed Navigation Bar Spacing: relying on body padding from shared.css */
    .page-8k8-com-2__hero-section {
        padding-top: 10px; /* Small decorative top padding */
    }
    .page-8k8-com-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-8k8-com-2__hero-section {
        background: linear-gradient(135deg, var(--page-8k8-com-2-secondary-color), var(--page-8k8-com-2-background-dark));
        text-align: center;
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }

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

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

    .page-8k8-com-2__hero-title {
        font-size: 3em;
        color: var(--page-8k8-com-2-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

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

    .page-8k8-com-2__cta-button:hover {
        background-color: #ffeb3b;
        transform: translateY(-3px);
    }
    
    .page-8k8-com-2__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-com-2__section--dark {
        background-color: var(--page-8k8-com-2-secondary-color);
    }

    .page-8k8-com-2__section-title {
        font-size: 2.5em;
        color: var(--page-8k8-com-2-primary-color);
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

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

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

    .page-8k8-com-2__card {
        background-color: #2a3b4c;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .page-8k8-com-2__card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-2__card-icon {
        width: 200px; /* Minimum size requirement */
        height: 200px; /* Minimum size requirement */
        margin-bottom: 20px;
        border-radius: 50%;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

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

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

    .page-8k8-com-2__image-full-width {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .page-8k8-com-2__features-list {
        list-style: none;
        padding: 0;
        margin: 40px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-8k8-com-2__features-list-item {
        background-color: #2a3b4c;
        border-radius: 8px;
        padding: 20px 25px;
        text-align: left;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
        min-width: 280px; /* Ensure minimum width for smaller screens */
        max-width: calc(33% - 20px);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: background-color 0.3s ease;
    }
    
    .page-8k8-com-2__features-list-item:hover {
        background-color: #3a4b5c;
    }

    .page-8k8-com-2__features-list-item-icon {
        color: var(--page-8k8-com-2-primary-color);
        font-size: 2em;
        min-width: 40px; /* Ensure icon doesn't shrink */
        text-align: center;
    }

    .page-8k8-com-2__features-list-item-text {
        color: var(--page-8k8-com-2-text-color-light);
        font-size: 1em;
    }

    .page-8k8-com-2__promo-banner {
        background: linear-gradient(90deg, var(--page-8k8-com-2-accent-color), #8a2be2);
        padding: 40px 20px;
        margin: 60px 0;
        border-radius: 10px;
        text-align: center;
        color: var(--page-8k8-com-2-text-color-light);
    }

    .page-8k8-com-2__promo-title {
        font-size: 2.2em;
        color: #ffffff;
        margin-bottom: 15px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-2__promo-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-2__provider-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-com-2__provider-logo {
        width: 200px; /* Minimum size requirement */
        height: 100px; /* Adjusted height to maintain aspect ratio with min-width */
        object-fit: contain;
        filter: grayscale(80%) brightness(150%); /* Allowed filters for stylistic effect not color change */
        transition: filter 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .page-8k8-com-2__provider-logo:hover {
        filter: grayscale(0%) brightness(100%);
    }

    .page-8k8-com-2__payment-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-com-2__payment-logo {
        width: 200px; /* Minimum size requirement */
        height: 100px; /* Adjusted height to maintain aspect ratio with min-width */
        object-fit: contain;
        filter: brightness(120%);
        transition: filter 0.3s ease;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-com-2__payment-logo:hover {
        filter: brightness(100%);
    }

    /* FAQ Section Styles */
    .page-8k8-com-2__faq-section {
        background-color: var(--page-8k8-com-2-secondary-color);
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-com-2__faq-list {
        max-width: 800px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-8k8-com-2__faq-item {
        background-color: #2a3b4c;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3a4b5c;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-2__faq-question:hover {
        background-color: #4a5b6c;
    }

    .page-8k8-com-2__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-8k8-com-2-primary-color);
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-8k8-com-2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-8k8-com-2-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-8k8-com-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding, will be adjusted on active */
        opacity: 0;
        color: var(--page-8k8-com-2-text-color-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X (minus sign) */
    }

    /* Floating Register/Login buttons */
    .page-8k8-com-2__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-8k8-com-2__floating-button {
        background-color: var(--page-8k8-com-2-primary-color);
        color: var(--page-8k8-com-2-secondary-color);
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        min-width: 120px;
    }

    .page-8k8-com-2__floating-button:hover {
        background-color: #ffeb3b;
        transform: translateY(-3px);
    }
    .page-8k8-com-2__floating-button--login {
        background-color: #a040fb; /* A different accent for login */
        color: var(--page-8k8-com-2-text-color-light);
    }
    .page-8k8-com-2__floating-button--login:hover {
        background-color: #b050fc;
    }


    /* Responsive Design */
    @media (max-width: 992px) {
        .page-8k8-com-2__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-com-2__section-title {
            font-size: 2em;
        }
        .page-8k8-com-2__features-list-item {
            flex: 1 1 calc(50% - 30px); /* 2 items per row */
            max-width: calc(50% - 10px);
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com-2__hero-section {
            padding: 40px 0;
        }
        .page-8k8-com-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-com-2__hero-description {
            font-size: 1em;
        }
        .page-8k8-com-2__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-com-2__section {
            padding: 40px 0;
        }
        .page-8k8-com-2__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-com-2__grid {
            grid-template-columns: 1fr; /* Single column */
            gap: 20px;
        }
        .page-8k8-com-2__card {
            padding: 25px;
        }
        .page-8k8-com-2__card-icon {
            width: 200px; /* Ensure minimum size */
            height: 200px; /* Ensure minimum size */
        }
        .page-8k8-com-2__card-title {
            font-size: 1.3em;
        }
        .page-8k8-com-2__promo-banner {
            padding: 30px 15px;
            margin: 40px 0;
        }
        .page-8k8-com-2__promo-title {
            font-size: 1.8em;
        }
        .page-8k8-com-2__promo-description {
            font-size: 0.95em;
        }

        /* List item specific mobile responsive requirements */
        .page-8k8-com-2__features-list {
            flex-direction: column;
            gap: 15px;
            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-2__features-list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px 20px !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-2__provider-logo,
        .page-8k8-com-2__payment-logo {
            width: 200px; /* Ensure minimum size */
            height: auto;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-2__image-full-width {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-2__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-com-2__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-com-2__faq-toggle {
            font-size: 1.5em;
        }
        .page-8k8-com-2__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-com-2__floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        .page-8k8-com-2__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
            min-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-2__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-com-2__hero-description {
            font-size: 0.9em;
        }
        .page-8k8-com-2__cta-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
        .page-8k8-com-2__section-title {
            font-size: 1.6em;
        }
    }
  