
    /* Page-specific CSS for 8k8 agent */
    :root {
        --primary-color: #ffcc00; /* Gold/Yellow */
        --secondary-color: #333333; /* Dark Grey */
        --accent-color: #e60000; /* Red */
        --text-color-light: #ffffff;
        --text-color-dark: #333333;
        --background-dark: #1a1a1a;
        --background-light: #f5f5f5;
        --border-color: #444444;
    }

    .page-8k8-agent {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color-dark);
        background-color: var(--background-light);
    }

    /* Fallback for header offset if shared.css doesn't provide it */
    /* .page-8k8-agent {
      padding-top: var(--header-offset, 122px);
    } */

    .page-8k8-agent__hero-section {
        position: relative;
        padding: 10px 20px 80px 20px; /* Small top padding, assuming body handles main offset */
        color: var(--text-color-light);
        text-align: center;
        overflow: hidden;
        background-color: var(--background-dark);
    }

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

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

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

    .page-8k8-agent__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: var(--text-color-light);
    }

    .page-8k8-agent__button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color-light);
        padding: 15px 30px;
        border-radius: 8px;
        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-agent__button:hover {
        background-color: #cc0000;
        transform: translateY(-2px);
    }

    .page-8k8-agent__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-agent__section--dark {
        background-color: var(--background-dark);
        color: var(--text-color-light);
    }

    .page-8k8-agent__section--light {
        background-color: var(--background-light);
        color: var(--text-color-dark);
    }

    .page-8k8-agent__section-title {
        font-size: 2.2em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

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

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

    .page-8k8-agent__grid-item {
        background-color: #ffffff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-agent__section--dark .page-8k8-agent__grid-item {
        background-color: var(--secondary-color);
        color: var(--text-color-light);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-agent__grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-agent__grid-item-icon {
        width: 200px; /* Minimum 200px as per requirements */
        height: 200px; /* Minimum 200px as per requirements */
        margin-bottom: 20px;
        object-fit: contain; /* Ensures the image fits within the bounds without cropping */
        display: block; /* Centers the image */
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-agent__grid-item-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-agent__grid-item-description {
        font-size: 1em;
        color: var(--text-color-dark);
    }

    .page-8k8-agent__section--dark .page-8k8-agent__grid-item-description {
        color: var(--text-color-light);
    }

    .page-8k8-agent__process-step {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        background-color: #ffffff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-agent__section--dark .page-8k8-agent__process-step {
        background-color: var(--secondary-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-agent__step-number {
        font-size: 2em;
        font-weight: bold;
        color: var(--accent-color);
        margin-right: 20px;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid var(--accent-color);
        border-radius: 50%;
    }

    .page-8k8-agent__step-content h3 {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-8k8-agent__step-content p {
        font-size: 1em;
        color: var(--text-color-dark);
    }
    .page-8k8-agent__section--dark .page-8k8-agent__step-content p {
        color: var(--text-color-light);
    }

    .page-8k8-agent__image-container {
        text-align: center;
        margin: 40px 0;
    }

    .page-8k8-agent__image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        min-width: 200px; /* Ensure images meet minimum size */
        min-height: 200px;
        object-fit: cover; /* Use cover for larger images */
    }

    /* FAQ Section */
    .page-8k8-agent__faq-section {
        background-color: var(--background-dark);
        color: var(--text-color-light);
    }

    .page-8k8-agent__faq-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

    .page-8k8-agent__faq-item {
        background-color: var(--secondary-color);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-8k8-agent__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--secondary-color);
        transition: background-color 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .page-8k8-agent__faq-question:hover {
        background-color: #444444;
    }

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

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

    .page-8k8-agent__faq-item.active .page-8k8-agent__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-8k8-agent__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        color: var(--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-agent__faq-item.active .page-8k8-agent__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

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

        .page-8k8-agent__hero-subtitle {
            font-size: 1em;
        }

        .page-8k8-agent__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-agent__section {
            padding: 40px 15px;
        }

        .page-8k8-agent__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8k8-agent__grid {
            grid-template-columns: 1fr; /* Single column for grid items */
            gap: 20px;
        }

        /* List item responsiveness for grid items */
        .page-8k8-agent__grid-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 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-agent__process-step {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !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-agent__step-number {
            margin-right: 0;
            margin-bottom: 15px;
            font-size: 1.8em;
            width: 45px;
            height: 45px;
        }

        .page-8k8-agent__step-content h3 {
            font-size: 1.3em;
        }

        .page-8k8-agent__faq-question {
            padding: 15px;
        }

        .page-8k8-agent__faq-question h3 {
            font-size: 1.1em;
        }

        .page-8k8-agent__faq-toggle {
            font-size: 1.5em;
        }

        .page-8k8-agent__faq-answer {
            padding: 15px 15px !important; /* Ensure padding is consistent */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        /* Image responsiveness */
        .page-8k8-agent__image-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            padding: 0 15px; /* Adjust padding to avoid excessive inner spacing */
        }
        .page-8k8-agent__image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-agent__grid-item-icon {
            width: 150px; /* Adjust for smaller screens if 200px is too large, but still > 200px requirement */
            height: 150px;
        }
    }
  