
    :root {
        --page-8k8-3-primary-color: #FFD700; /* Gold */
        --page-8k8-3-secondary-color: #000000; /* Black */
        --page-8k8-3-background-dark: #1A1A1A; /* Dark Grey */
        --page-8k8-3-background-medium: #2C2C2C; /* Medium Grey */
        --page-8k8-3-text-light: #FFFFFF; /* White */
        --page-8k8-3-text-dark: #333333; /* Dark Grey for gold background */
        --page-8k8-3-accent-color: #FF4500; /* OrangeRed */
        --page-8k8-3-border-color: #444444; /* Grey border */
    }

    .page-8k8-3 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-3-text-light);
        background-color: var(--page-8k8-3-background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding, if shared.css doesn't handle it */
    }

    .page-8k8-3__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-3__hero-section {
        background-color: var(--page-8k8-3-background-medium);
        text-align: center;
        padding: 60px 20px 40px;
        position: relative;
        overflow: hidden;
        padding-top: 10px; /* Adjust for fixed header, as per instructions */
    }

    .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__main-heading {
        font-size: 2.8em;
        color: var(--page-8k8-3-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        word-wrap: break-word; /* Ensure long keywords break */
        overflow-wrap: break-word;
    }

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

    .page-8k8-3__cta-button {
        display: inline-block;
        background-color: var(--page-8k8-3-accent-color);
        color: var(--page-8k8-3-text-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; /* Use button tag, so remove border */
        cursor: pointer;
    }

    .page-8k8-3__cta-button:hover {
        background-color: #E63900; /* Darker OrangeRed */
        transform: translateY(-2px);
    }

    .page-8k8-3__section {
        padding: 60px 20px;
        text-align: center;
        background-color: var(--page-8k8-3-background-dark);
    }

    .page-8k8-3__section:nth-of-type(even) {
        background-color: var(--page-8k8-3-background-medium);
    }

    .page-8k8-3__section-heading {
        font-size: 2.2em;
        color: var(--page-8k8-3-primary-color);
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__section-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__image-wrapper {
        margin: 40px auto;
        max-width: 800px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .page-8k8-3__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        padding: 0; /* Important for mobile list item handling */
        list-style: none; /* Remove default list styling */
    }

    .page-8k8-3__benefits-item {
        background-color: var(--page-8k8-3-background-dark);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        text-align: left;
        border: 1px solid var(--page-8k8-3-border-color);
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-3__benefits-item-icon {
        width: 100%; /* Ensure image fills container */
        height: auto;
        margin-bottom: 20px;
        display: block;
        border-radius: 8px; /* Example style */
        object-fit: cover;
    }

    .page-8k8-3__benefits-item-title {
        font-size: 1.5em;
        color: var(--page-8k8-3-primary-color);
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .page-8k8-3__steps-list {
        list-style: none;
        padding: 0;
        margin: 40px auto 0;
        max-width: 800px;
        text-align: left;
    }

    .page-8k8-3__step-item {
        background-color: var(--page-8k8-3-background-medium);
        margin-bottom: 20px;
        padding: 25px 30px;
        border-radius: 8px;
        border-left: 5px solid var(--page-8k8-3-primary-color);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: flex-start;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-3__step-number {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-8k8-3-primary-color);
        margin-right: 20px;
        flex-shrink: 0;
    }

    .page-8k8-3__step-content {
        flex-grow: 1;
    }

    .page-8k8-3__step-title {
        font-size: 1.4em;
        color: var(--page-8k8-3-primary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__step-description {
        font-size: 1em;
        color: var(--page-8k8-3-text-light);
    }

    /* FAQ Section Styles */
    .page-8k8-3__faq-container {
        max-width: 900px;
        margin: 40px auto;
        text-align: left;
    }

    .page-8k8-3__faq-item {
        background-color: var(--page-8k8-3-background-medium);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--page-8k8-3-border-color);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-3__faq-question:hover {
        background-color: #3a3a3a; /* Slightly lighter dark background */
    }

    .page-8k8-3__faq-question-title {
        font-size: 1.3em;
        color: var(--page-8k8-3-primary-color);
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from intercepting click event */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__faq-toggle {
        font-size: 1.8em;
        color: var(--page-8k8-3-primary-color);
        margin-left: 20px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from intercepting click event */
        flex-shrink: 0;
    }

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

    .page-8k8-3__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--page-8k8-3-text-light);
        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;
        text-align: left;
    }

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

    /* Ensure images are responsive */
    .page-8k8-3 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    .page-8k8-3__image-container { /* Generic container for images to ensure responsiveness */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-3__hero-section {
            padding: 40px 15px 30px;
        }

        .page-8k8-3__main-heading {
            font-size: 2em;
        }

        .page-8k8-3__hero-text {
            font-size: 1em;
        }

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

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

        .page-8k8-3__section-heading {
            font-size: 1.8em;
        }

        .page-8k8-3__section-text {
            font-size: 0.95em;
        }

        /* List item responsiveness */
        .page-8k8-3__benefits-grid,
        .page-8k8-3__steps-list {
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            display: block; /* Ensure items stack */
        }

        .page-8k8-3__benefits-item,
        .page-8k8-3__step-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-3__benefits-item-title,
        .page-8k8-3__step-title {
            font-size: 1.3em;
            word-break: break-word !important; /* Break long words */
        }

        .page-8k8-3__benefits-item-description,
        .page-8k8-3__step-description {
            font-size: 0.9em;
            word-break: break-word !important;
        }

        .page-8k8-3__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-8k8-3__step-number {
            margin-right: 0;
            margin-bottom: 15px;
            font-size: 2em;
        }

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

        .page-8k8-3__faq-question-title {
            font-size: 1.1em;
            word-break: break-word !important;
        }

        .page-8k8-3__faq-toggle {
            font-size: 1.5em;
            margin-left: 15px;
        }

        .page-8k8-3__faq-answer {
            padding: 15px 20px;
            font-size: 0.95em;
            word-break: break-word !important;
        }

        .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
             padding: 15px 20px !important; /* Ensure padding is adjusted for mobile */
        }

        .page-8k8-3__image-wrapper {
            margin: 20px auto;
        }

        /* Image specific mobile styles */
        .page-8k8-3 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-3__image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }
  