
    /* Page-specific CSS for 8k8-4 */
    :root {
        --primary-color: #e44d26; /* A vibrant color for CTAs and highlights */
        --secondary-color: #333;
        --text-color: #f0f0f0;
        --background-color: #1a1a1a;
        --card-background: #2a2a2a;
        --border-color: #444;
        --accent-color: #ffcc00; /* Gold/yellow for highlights */
        --light-grey: #ccc;
    }

    .page-8k8-4 {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
        line-height: 1.6;
        padding-top: 10px; /* Small offset, relying on body padding for main header offset */
    }

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

    .page-8k8-4__hero-section {
        position: relative;
        text-align: center;
        color: #fff;
        padding: 80px 20px;
        overflow: hidden;
        background-color: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }

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

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

    .page-8k8-4__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        color: var(--accent-color);
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-8k8-4__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--light-grey);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-8k8-4__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-4__button:hover {
        background-color: #ff6a40;
        transform: translateY(-2px);
    }

    .page-8k8-4__heading-primary {
        font-size: 2.8em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .page-8k8-4__heading-secondary {
        font-size: 2em;
        color: var(--primary-color);
        margin-top: 40px;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .page-8k8-4__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--light-grey);
    }

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

    .page-8k8-4__step-card {
        background-color: var(--card-background);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        text-align: center;
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .page-8k8-4__step-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-4__step-number {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-8k8-4__step-title {
        font-size: 1.5em;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

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

    .page-8k8-4__promo-card {
        background-color: var(--card-background);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        margin-top: 30px;
        border: 1px solid var(--border-color);
    }

    .page-8k8-4__promo-title {
        font-size: 2em;
        color: var(--accent-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-8k8-4__promo-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-8k8-4__promo-item {
        background-color: #3a3a3a;
        margin-bottom: 10px;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        border-left: 5px solid var(--primary-color);
        box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-8k8-4__promo-item::before {
        content: '✨';
        margin-right: 10px;
        font-size: 1.2em;
    }

    .page-8k8-4__image-container {
        text-align: center;
        margin: 40px auto;
        max-width: 800px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-4__image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-4__faq-section {
        background-color: #222;
        padding: 50px 20px;
        margin-top: 40px;
        border-radius: 10px;
    }

    .page-8k8-4__faq-title {
        font-size: 2.5em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 40px;
    }

    .page-8k8-4__faq-item {
        background-color: var(--card-background);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

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

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

    .page-8k8-4__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--text-color);
        pointer-events: none; /* Prevents text from interfering with click event */
    }

    .page-8k8-4__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents toggle from interfering with click event */
    }

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

    .page-8k8-4__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--light-grey);
        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-4__faq-item.active .page-8k8-4__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-8k8-4__contact-section {
        text-align: center;
        padding: 40px 20px;
        background-color: #222;
        margin-top: 40px;
        border-radius: 10px;
    }

    .page-8k8-4__contact-title {
        font-size: 2.2em;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .page-8k8-4__contact-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: var(--light-grey);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-8k8-4__hero-title {
            font-size: 3em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-4__heading-primary {
            font-size: 2.2em;
        }
        .page-8k8-4__heading-secondary {
            font-size: 1.8em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-4__hero-section {
            padding: 60px 15px;
            min-height: 300px;
        }
        .page-8k8-4__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-4__button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-8k8-4__section {
            padding: 30px 15px;
        }
        .page-8k8-4__heading-primary {
            font-size: 1.8em;
            margin-bottom: 25px;
        }
        .page-8k8-4__heading-secondary {
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .page-8k8-4__text-content {
            font-size: 1em;
        }
        .page-8k8-4__steps-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-8k8-4__step-card {
            padding: 25px;
        }
        .page-8k8-4__step-number {
            font-size: 2em;
        }
        .page-8k8-4__step-title {
            font-size: 1.3em;
        }
        .page-8k8-4__promo-card {
            padding: 25px;
        }
        .page-8k8-4__promo-title {
            font-size: 1.8em;
        }
        .page-8k8-4__promo-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-8k8-4__promo-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;
            word-break: break-word !important;
        }
        .page-8k8-4__image-container {
            margin: 30px auto;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-8k8-4__image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-8k8-4__faq-title {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .page-8k8-4__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-4__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-4__contact-title {
            font-size: 1.8em;
        }
        .page-8k8-4__contact-text {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-4__hero-title {
            font-size: 2em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 0.9em;
        }
        .page-8k8-4__button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-8k8-4__heading-primary {
            font-size: 1.5em;
        }
        .page-8k8-4__heading-secondary {
            font-size: 1.3em;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1em;
        }
    }
  