
        .page-8us {
            font-family: 'Arial', sans-serif;
            color: #333333; /* Default text color for light body background */
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-8us__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px 20px 60px 20px;
            background-color: #2563eb;
            color: #ffffff;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-8us__hero-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            margin-bottom: 20px;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-8us__hero-content {
            max-width: 800px;
            margin: 0 auto;
            z-index: 1;
        }

        .page-8us__hero-content h1 {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-8us__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .page-8us__cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-8us__btn-primary,
        .page-8us__btn-secondary {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-align: center;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-8us__btn-primary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #ffffff;
        }

        .page-8us__btn-primary:hover {
            background-color: #e0e0e0;
            border-color: #e0e0e0;
        }

        .page-8us__btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .page-8us__btn-secondary:hover {
            background-color: #ffffff;
            color: #2563eb;
        }

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

        .page-8us__section--light {
            background-color: #f8f9fa;
            color: #333333;
        }

        .page-8us__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-8us__section-title {
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: inherit;
        }

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

        .page-8us__card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: #333333;
            box-sizing: border-box;
        }

        .page-8us__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .page-8us__card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px auto;
            display: block;
            object-fit: contain;
        }

        .page-8us__card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2563eb;
        }

        .page-8us__card-description {
            font-size: 1rem;
            line-height: 1.5;
            color: #555555;
        }

        .page-8us__image-content-flex {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .page-8us__image-content-flex-img {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        .page-8us__image-content-flex-text {
            text-align: left;
            max-width: 600px;
        }

        .page-8us__image-content-flex-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2563eb;
        }

        .page-8us__image-content-flex-text p {
            margin-bottom: 15px;
            color: #555555;
        }

        .page-8us__list-item {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            color: #555555;
            box-sizing: border-box;
        }

        .page-8us__list-item::before {
            content: '✅';
            position: absolute;
            left: 0;
            color: #2563eb;
        }

        .page-8us__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffc107; /* Enticing color */
            color: #333333;
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none; /* Hidden by default, shown on mobile */
            transition: transform 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 200px;
        }

        .page-8us__floating-button:hover {
            transform: translateY(-3px);
        }

        .page-8us__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            color: #333333;
        }

        .page-8us__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            user-select: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: #2563eb;
            border-bottom: 1px solid #eee;
        }

        .page-8us__faq-question:hover {
            background-color: #f0f0f0;
        }

        .page-8us__faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            pointer-events: none;
            color: #2563eb;
        }

        .page-8us__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-8us__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
        }

        .page-8us__faq-item.active .page-8us__faq-answer {
            max-height: 2000px !important;
            padding: 20px !important;
            opacity: 1;
        }

        .page-8us__video-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 20px 60px 20px;
            background-color: #64748b;
            color: #ffffff;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-8us__video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            box-sizing: border-box;
        }

        .page-8us__video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        .page-8us__video-content h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 20px;
            color: #ffffff;
            text-align: center;
        }

        .page-8us__video-content p {
            font-size: clamp(0.9rem, 2.2vw, 1.1rem);
            opacity: 0.9;
            text-align: center;
            max-width: 800px;
            margin-bottom: 30px;
        }

        /* Responsive adjustments */
        @media (min-width: 769px) {
            .page-8us__image-content-flex {
                flex-direction: row;
                justify-content: center;
                align-items: flex-start;
            }
            .page-8us__image-content-flex.reverse {
                flex-direction: row-reverse;
            }
            .page-8us__floating-button {
                display: none; /* Hide on desktop */
            }
        }

        @media (max-width: 768px) {
            .page-8us {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-8us__hero-section {
                padding: 10px 15px 40px 15px;
            }

            .page-8us__hero-content h1 {
                font-size: 1.8rem;
            }

            .page-8us__hero-content p {
                font-size: 1rem;
            }

            .page-8us__cta-buttons {
                flex-direction: column;
                gap: 10px;
                padding: 0 15px;
            }

            .page-8us__btn-primary,
            .page-8us__btn-secondary {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding: 12px 15px;
            }

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

            .page-8us__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .page-8us__grid {
                grid-template-columns: 1fr;
            }

            .page-8us__card {
                padding: 25px;
            }

            .page-8us__card-title {
                font-size: 1.2rem;
            }

            .page-8us__image-content-flex {
                flex-direction: column;
                gap: 30px;
            }

            .page-8us__image-content-flex-img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            .page-8us__image-content-flex-text {
                text-align: center;
            }

            .page-8us__image-content-flex-text h3 {
                font-size: 1.5rem;
            }

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

            .page-8us__floating-button {
                display: block; /* Show on mobile */
                max-width: 180px !important;
                width: auto !important;
                padding: 10px 18px;
                bottom: 15px;
                right: 15px;
            }

            .page-8us__faq-question,
            .page-8us__faq-answer {
                padding: 15px;
            }

            .page-8us__faq-question h3 {
                font-size: 1rem;
            }

            .page-8us__video-section {
                padding: 10px 15px 40px 15px;
            }

            .page-8us__video-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-8us__video-content h2 {
                font-size: 1.5rem;
            }

            .page-8us__video-content p {
                font-size: 0.9rem;
            }

            .page-8us img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            .page-8us__section,
            .page-8us__card,
            .page-8us__container,
            .page-8us__video-section,
            .page-8us__video-container,
            .page-8us__video-wrapper {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow: hidden !important;
            }

            .page-8us__video-section {
                padding-top: 10px !important;
            }

            .page-8us__cta-buttons {
                flex-wrap: wrap !important;
                gap: 10px;
            }

            .page-8us__cta-buttons {
                display: flex;
                flex-direction: column;
            }
        }
    