
    /* Base styles for the page */
    .page-8k8-agent {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Section styling */
    .page-8k8-agent__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        text-align: center;
    }

    .page-8k8-agent__section--light {
        background-color: #ffffff;
    }

    .page-8k8-agent__section--dark {
        background-color: #f0f0f0;
    }

    /* Headings */
    .page-8k8-agent__heading {
        font-size: 2.5em;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-8k8-agent__subheading {
        font-size: 1.8em;
        color: #2a2a2a;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Paragraphs */
    .page-8k8-agent__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #444;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Buttons */
    .page-8k8-agent__button {
        display: inline-block;
        background-color: #e0b000; /* Gold-like color, common in gaming */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: 20px;
    }

    .page-8k8-agent__button:hover {
        background-color: #cc9900;
    }

    /* Image styling */
    .page-8k8-agent__image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    .page-8k8-agent__hero-section {
        background-color: #1a1a1a; /* Dark background for hero */
        color: #fff;
        padding: calc(var(--header-offset, 122px) + 20px) 20px 60px; /* Add a small padding-top for decoration, assuming body padding */
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .page-8k8-agent__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Dark overlay for text readability */
        z-index: 1;
    }

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

    .page-8k8-agent__hero-heading {
        font-size: 3.2em;
        margin-bottom: 20px;
        color: #e0b000; /* Gold for main heading */
        line-height: 1.2;
    }

    .page-8k8-agent__hero-paragraph {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #eee;
    }

    /* Feature/List Sections */
    .page-8k8-agent__features-grid,
    .page-8k8-agent__steps-list,
    .page-8k8-agent__support-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin-top: 40px;
        padding: 0;
        list-style: none;
    }

    .page-8k8-agent__feature-item,
    .page-8k8-agent__step-item,
    .page-8k8-agent__support-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 30px;
        text-align: left;
        flex: 1 1 calc(33% - 50px); /* Three columns on desktop */
        min-width: 280px;
        box-sizing: border-box; /* Crucial for responsive lists */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-agent__feature-item:hover,
    .page-8k8-agent__step-item:hover,
    .page-8k8-agent__support-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-agent__item-title {
        font-size: 1.4em;
        color: #e0b000;
        margin-bottom: 10px;
    }

    .page-8k8-agent__item-text {
        font-size: 1em;
        color: #555;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
    }

    .page-8k8-agent__step-number {
        font-size: 2em;
        color: #e0b000;
        margin-bottom: 10px;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-8k8-agent__faq-section {
        text-align: left;
    }

    .page-8k8-agent__faq-container {
        max-width: 800px;
        margin: 40px auto 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-agent__faq-item {
        background-color: #ffffff;
        border-bottom: 1px solid #eee;
    }

    .page-8k8-agent__faq-item:last-child {
        border-bottom: none;
    }

    .page-8k8-agent__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

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

    .page-8k8-agent__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #333;
        font-weight: 600;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-agent__faq-toggle {
        font-size: 1.8em;
        color: #e0b000;
        font-weight: bold;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

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

    .page-8k8-agent__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        font-size: 1em;
        color: #555;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

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

        .page-8k8-agent__hero-paragraph {
            font-size: 1.1em;
        }

        .page-8k8-agent__heading {
            font-size: 2em;
        }

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

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

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

        .page-8k8-agent__feature-item,
        .page-8k8-agent__step-item,
        .page-8k8-agent__support-item {
            flex: 1 1 100%; /* Single column on mobile */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8k8-agent__features-grid,
        .page-8k8-agent__steps-list,
        .page-8k8-agent__support-list {
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8k8-agent__item-title {
            font-size: 1.2em;
        }

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

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

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

        /* Ensure images are responsive on mobile */
        .page-8k8-agent__image {
            max-width: 100%;
            height: auto;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-agent__hero-heading {
            font-size: 2em;
        }
        .page-8k8-agent__hero-paragraph {
            font-size: 1em;
        }
        .page-8k8-agent__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-agent__heading {
            font-size: 1.8em;
        }
        .page-8k8-agent__subheading {
            font-size: 1.3em;
        }
    }
  