
    /* CSS for page-8k8-3 */
    .page-8k8-3 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding, ensures content isn't hidden by fixed header */
    }

    /* Ensure main content has some padding */
    .page-8k8-3__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
        position: relative;
        padding: 100px 20px 80px; /* Adjusted padding-top for decorative spacing, not for header offset */
        text-align: center;
        overflow: hidden;
        background-color: #0f0f1d;
        border-bottom: 5px solid #ffcc00;
    }

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

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

    .page-8k8-3__hero-title {
        font-size: 3.5em;
        color: #ffcc00; /* Gold/Yellow for emphasis */
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-3__hero-subtitle {
        font-size: 1.5em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-8k8-3__cta-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-3__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-3__section {
        padding: 60px 20px;
        background-color: #1a1a2e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-8k8-3__section:nth-of-type(even) {
        background-color: #22223b;
    }

    .page-8k8-3__section-title {
        font-size: 2.5em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 40px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-3__section-text {
        font-size: 1.1em;
        color: #d0d0d0;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 30px;
    }

    /* Features/Steps Grid */
    .page-8k8-3__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-3__grid-item {
        background-color: #2a2a4a;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-3__grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__grid-item-icon {
        width: 250px; /* Minimum 200x200px */
        height: 180px; /* Example height, will be scaled by height: auto */
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
        border-radius: 8px;
        box-sizing: border-box; /* For responsive images */
    }

    .page-8k8-3__grid-item-title {
        font-size: 1.8em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-8k8-3__grid-item-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
        padding: 60px 20px;
        background-color: #0f0f1d;
    }

    .page-8k8-3__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .page-8k8-3__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #3e3e60;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        color: #ffcc00;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-8k8-3__faq-question:hover {
        background-color: #4a4a70;
    }

    .page-8k8-3__faq-question h3 {
        margin: 0;
        color: #ffcc00;
        font-size: 1em; /* Adjust to match parent font-size */
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-3__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
        transform: rotate(45deg); /* Rotates '+' to an 'X' */
    }

    .page-8k8-3__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        color: #d0d0d0;
        background-color: #2a2a4a;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-3 {
            padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset */
        }

        .page-8k8-3__hero-title {
            font-size: 2.5em;
        }

        .page-8k8-3__hero-subtitle {
            font-size: 1.2em;
        }

        .page-8k8-3__section-title {
            font-size: 2em;
        }

        .page-8k8-3__grid {
            grid-template-columns: 1fr;
        }

        /* List item specific responsive requirements */
        .page-8k8-3__grid-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjusted padding */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-3__grid-item-description,
        .page-8k8-3__faq-answer p { /* Target p inside answer for word break */
            word-break: break-word !important; /* For long keywords */
        }

        .page-8k8-3__faq-question,
        .page-8k8-3__faq-answer {
            padding: 15px 15px !important; /* Adjusted padding for smaller screens */
        }
        
        .page-8k8-3__faq-question h3 {
            font-size: 1em; /* Ensure font size is appropriate for mobile */
        }


        /* Image responsive requirements */
        .page-8k8-3__hero-background,
        .page-8k8-3__grid-item-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }

        .page-8k8-3__grid-item-icon {
            width: 100% !important; /* Ensure it takes full width of its container */
            max-height: 250px; /* Cap height on mobile for grid items */
            object-fit: cover; /* Adjust object-fit for smaller screens if needed */
        }
    }

    /* Base styles for images within content, ensuring responsiveness */
    .page-8k8-3 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Ensure contrast */
    .page-8k8-3 h1, .page-8k8-3 h2, .page-8k8-3 h3, .page-8k8-3 h4, .page-8k8-3 h5, .page-8k8-3 h6 {
        color: #ffcc00; /* Gold/Yellow */
    }
    .page-8k8-3 p, .page-8k8-3 li, .page-8k8-3 span {
        color: #e0e0e0; /* Light gray */
    }
    .page-8k8-3__cta-button {
        background-color: #ffcc00;
        color: #1a1a2e; /* Dark blue */
    }
    .page-8k8-3__faq-question {
        background-color: #3e3e60; /* Slightly lighter dark blue */
        color: #ffcc00;
    }
    .page-8k8-3__faq-answer {
        background-color: #2a2a4a; /* Darker blue */
        color: #d0d0d0;
    }
  