
        :root {
            --page-live-chat--primary-color: #26A9E0;
            --page-live-chat--secondary-color: #FFFFFF;
            --page-live-chat--login-color: #EA7C07;
            --page-live-chat--background-color: #FFFFFF;
            --page-live-chat--text-color: #333333;
            --page-live-chat--dark-text-color: #000000;
            --page-live-chat--light-text-color: #FFFFFF;
            --page-live-chat--border-color: #e0e0e0;
        }

        .page-live-chat {
            font-family: 'Arial', sans-serif;
            color: var(--page-live-chat--text-color);
            line-height: 1.6;
            background-color: var(--page-live-chat--background-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .page-live-chat__hero-section {
            width: 100%;
            background-color: var(--page-live-chat--primary-color);
            color: var(--page-live-chat--light-text-color);
            text-align: center;
            padding: 10px 20px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .page-live-chat__hero-image-container {
            width: 100%;
            height: 300px;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: flex-end; /* Align image to bottom of its container */
        }

        .page-live-chat__hero-image {
            width: 100%;
            max-width: 800px; /* Adjust max-width as needed */
            height: auto;
            display: block;
            object-fit: contain;
            filter: none; /* Ensure no CSS filter */
        }

        .page-live-chat__hero-content {
            max-width: 900px;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .page-live-chat__hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--page-live-chat--light-text-color);
        }

        .page-live-chat__hero-content p {
            font-size: 1.15rem;
            margin-bottom: 30px;
            color: var(--page-live-chat--light-text-color);
        }

        .page-live-chat__cta-button {
            display: inline-block;
            background-color: var(--page-live-chat--login-color);
            color: var(--page-live-chat--light-text-color);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-live-chat__cta-button:hover {
            background-color: darken(var(--page-live-chat--login-color), 10%);
            transform: translateY(-2px);
        }

        .page-live-chat__section {
            width: 100%;
            max-width: 1200px;
            padding: 60px 20px;
            background-color: var(--page-live-chat--background-color);
            box-sizing: border-box;
        }

        .page-live-chat__section--primary-bg {
            background-color: var(--page-live-chat--primary-color);
            color: var(--page-live-chat--light-text-color);
        }

        .page-live-chat__section-title {
            font-size: 2.5rem;
            color: var(--page-live-chat--dark-text-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-live-chat__section--primary-bg .page-live-chat__section-title {
            color: var(--page-live-chat--light-text-color);
        }

        .page-live-chat__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-live-chat__card {
            background-color: var(--page-live-chat--secondary-color);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid var(--page-live-chat--border-color);
            color: var(--page-live-chat--dark-text-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            filter: none; /* Ensure no CSS filter */
        }

        .page-live-chat__card:hover {
            transform: translateY(-5px);
        }

        .page-live-chat__card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            filter: none; /* Ensure no CSS filter */
        }

        .page-live-chat__card-title {
            font-size: 1.7rem;
            color: var(--page-live-chat--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-live-chat__card-description {
            font-size: 1rem;
            color: var(--page-live-chat--text-color);
        }

        .page-live-chat__contact-methods .page-live-chat__card-icon {
            width: 100px;
            height: 100px;
        }

        .page-live-chat__faq-section {
            background-color: #f9f9f9;
        }

        .page-live-chat__faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--page-live-chat--border-color);
            border-radius: 8px;
            background-color: var(--page-live-chat--secondary-color);
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-live-chat__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--page-live-chat--dark-text-color);
            cursor: pointer;
            user-select: none;
            background-color: var(--page-live-chat--secondary-color);
            transition: background-color 0.3s ease;
        }

        .page-live-chat__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-live-chat__faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--page-live-chat--dark-text-color);
            pointer-events: none;
        }

        .page-live-chat__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            color: var(--page-live-chat--primary-color);
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .page-live-chat__faq-item.active .page-live-chat__faq-toggle {
            transform: rotate(45deg);
        }

        .page-live-chat__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--page-live-chat--text-color);
            text-align: left;
        }

        .page-live-chat__faq-item.active .page-live-chat__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to contain content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-live-chat__text-block {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: var(--page-live-chat--text-color);
        }

        .page-live-chat__text-block h3 {
            font-size: 1.8rem;
            color: var(--page-live-chat--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-live-chat__text-block ul {
            list-style: disc inside;
            margin-left: 20px;
        }

        .page-live-chat__text-block li {
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        .page-live-chat__feedback-form {
            background-color: var(--page-live-chat--secondary-color);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid var(--page-live-chat--border-color);
        }

        .page-live-chat__form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .page-live-chat__form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--page-live-chat--dark-text-color);
        }

        .page-live-chat__form-group input,
        .page-live-chat__form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--page-live-chat--border-color);
            border-radius: 6px;
            font-size: 1rem;
            box-sizing: border-box;
            color: var(--page-live-chat--dark-text-color);
            background-color: #fcfcfc;
        }

        .page-live-chat__form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .page-live-chat__submit-button {
            background-color: var(--page-live-chat--primary-color);
            color: var(--page-live-chat--light-text-color);
            padding: 15px 30px;
            border-radius: 8px;
            border: none;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-live-chat__submit-button:hover {
            background-color: darken(var(--page-live-chat--primary-color), 10%);
        }

        .page-live-chat img {
            max-width: 100%;
            height: auto;
            display: block;
            filter: none; /* Ensure no CSS filter */
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-live-chat__section {
                padding: 40px 20px;
            }

            .page-live-chat__section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .page-live-chat__hero-content h1 {
                font-size: clamp(2rem, 4.5vw, 3rem);
            }

            .page-live-chat__hero-content p {
                font-size: 1.05rem;
            }

            .page-live-chat__card-title {
                font-size: 1.5rem;
            }

            .page-live-chat__faq-question h3 {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .page-live-chat__hero-section {
                padding-top: 10px !important;
                padding-bottom: 40px;
            }

            .page-live-chat__hero-content h1 {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                margin-bottom: 10px;
            }

            .page-live-chat__hero-content p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .page-live-chat__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            
            .page-live-chat__section, .page-live-chat__card, .page-live-chat__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-live-chat__section-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
            }

            .page-live-chat__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-live-chat__card {
                padding: 25px;
            }

            .page-live-chat__card-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .page-live-chat__card-title {
                font-size: 1.3rem;
            }

            .page-live-chat__card-description {
                font-size: 0.95rem;
            }

            .page-live-chat__contact-methods .page-live-chat__card-icon {
                width: 80px;
                height: 80px;
            }

            .page-live-chat__faq-question {
                padding: 15px 20px;
                font-size: 1.1rem;
            }

            .page-live-chat__faq-question h3 {
                font-size: 1.1rem;
            }

            .page-live-chat__faq-toggle {
                font-size: 1.5rem;
            }

            .page-live-chat__faq-answer {
                padding: 15px 20px;
            }

            .page-live-chat__faq-item.active .page-live-chat__faq-answer {
                padding: 15px 20px !important;
            }

            .page-live-chat__text-block h3 {
                font-size: 1.5rem;
            }

            .page-live-chat__feedback-form {
                padding: 30px 20px;
            }

            .page-live-chat__form-group input,
            .page-live-chat__form-group textarea {
                padding: 10px;
            }

            .page-live-chat__submit-button {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-live-chat img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-live-chat p, .page-live-chat li {
                font-size: 16px;
                line-height: 1.6;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }

            .page-live-chat__text-block ul, .page-live-chat__text-block ol {
                padding-left: 0 !important;
                margin-left: 15px !important;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-live-chat__text-block li {
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
        }
    