
    /* Base styles for the page content */
    .page-8k8-agent {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f8f8;
    }

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

    /* Hero Section */
    .page-8k8-agent__hero-section {
        position: relative;
        padding: 10px 0 60px 0; /* 10px top padding as per instruction */
        color: #fff;
        text-align: center;
        overflow: hidden;
        background-color: #0d1a26; /* Dark background for contrast */
    }

    .page-8k8-agent__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Slightly transparent overlay for text readability */
        z-index: 1;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .page-8k8-agent__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold accent */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-agent__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #eee;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

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

    /* Section Styling */
    .page-8k8-agent__section {
        padding: 60px 20px;
        background-color: #fff;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-agent__section--dark {
        background-color: #1a2a3a;
        color: #fff;
    }

    .page-8k8-agent__section-title {
        font-size: 2.5em;
        color: #0d1a26;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-8k8-agent__section-title--light {
        color: #ffcc00;
    }

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

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

    .page-8k8-agent__feature-item {
        background-color: #f0f0f0;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-agent__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8k8-agent__feature-icon {
        margin-bottom: 20px;
        width: 250px; /* Minimum 200px */
        height: 250px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-8k8-agent__feature-title {
        font-size: 1.5em;
        color: #0d1a26;
        margin-bottom: 15px;
    }

    .page-8k8-agent__feature-description {
        font-size: 1em;
        color: #555;
    }

    /* How It Works Steps */
    .page-8k8-agent__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
    }

    .page-8k8-agent__step-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 30px;
        text-align: center;
        flex: 1 1 calc(33% - 40px);
        max-width: calc(33% - 40px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: box-shadow 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-agent__step-item:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-agent__step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background-color: #ffcc00;
        color: #0d1a26;
        border-radius: 50%;
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-8k8-agent__step-title {
        font-size: 1.6em;
        color: #0d1a26;
        margin-bottom: 15px;
    }

    .page-8k8-agent__step-description {
        font-size: 1em;
        color: #555;
    }

    .page-8k8-agent__step-image {
        margin-top: 20px;
        width: 300px; /* Minimum 200px */
        height: 200px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    /* Commission Section */
    .page-8k8-agent__commission-section {
        background-color: #0d1a26;
        color: #fff;
        padding: 60px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .page-8k8-agent__commission-title {
        font-size: 2.5em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-8k8-agent__commission-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .page-8k8-agent__commission-text {
        max-width: 800px;
        text-align: center;
        font-size: 1.1em;
        color: #eee;
    }

    .page-8k8-agent__commission-image {
        width: 600px; /* Minimum 200px */
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-agent__faq-section {
        padding: 60px 20px;
        background-color: #fff;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-agent__faq-title {
        font-size: 2.5em;
        color: #0d1a26;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-8k8-agent__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-agent__faq-item {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
        box-sizing: border-box; /* Required for list items */
    }

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

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

    .page-8k8-agent__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        text-align: left;
        color: #0d1a26;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

    .page-8k8-agent__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #fefefe;
        color: #555;
        font-size: 1em;
        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 Design */
    @media (max-width: 768px) {
        .page-8k8-agent__container {
            padding: 15px;
        }

        .page-8k8-agent__hero-title {
            font-size: 2.2em;
        }

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

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

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

        .page-8k8-agent__section-title,
        .page-8k8-agent__commission-title,
        .page-8k8-agent__faq-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-8k8-agent__feature-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8k8-agent__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-agent__steps-list {
            flex-direction: column;
            gap: 20px;
        }

        .page-8k8-agent__step-item {
            flex: 1 1 100%;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 25px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-agent__commission-content {
            gap: 20px;
        }

        .page-8k8-agent__commission-image,
        .page-8k8-agent__feature-icon,
        .page-8k8-agent__step-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin: 20px auto !important; /* Center images */
        }

        .page-8k8-agent__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

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

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

        .page-8k8-agent__faq-item {
            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;
        }
    }
  