<style>
        @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

        .about-us-section-wrapper *,
        .about-us-section-wrapper *:before,
        .about-us-section-wrapper *:after {
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

        .about-us-section-wrapper {
            margin: 0;
            padding: 0;
            
            font-family: Nunito, sans-serif;
        }

        .about-us-section-wrapper .responsive-container-block {
            min-height: 75px;
            height: fit-content;
            width: 100%;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            margin: 0 auto;
            margin-bottom: -60px;
            margin-top: -50px;
            justify-content: flex-start;
        }

        .about-us-section-wrapper .text-blk {
            margin: 0;
            padding: 10px;
            line-height: 25px;
        }

        .about-us-section-wrapper .responsive-container-block.bigContainer {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 50px;
        }

        .about-us-section-wrapper .text-blk.headingText {
            font-size: 26px;
            font-weight: 700;
            line-height: 28px;
            color: #bfff5a;
            margin-bottom: 10px;
            padding-right: 10px;
        }

        .about-us-section-wrapper .allText {
            padding: 0;
            width: 50%;
            margin: 0;
        }

        .about-us-section-wrapper .text-blk.subHeadingText {
            color: white;
            font-size: 32px;
            line-height: 40px;
            font-weight: 700;
            margin-bottom: 15px;
            padding-right: 10px;
        }

        .about-us-section-wrapper .text-blk.description {
            font-size: 18px;
            line-height: 28px;
            color: white;
            padding-right: 10px;
            margin-bottom: 40px;
            margin-top: -60px;
            text-align: justify !important;
        }

        .about-us-section-wrapper .explore {
            font-size: 15px;
            line-height: 28px;
            color: #bfff5a;
            background: transparent;
            border: none;
            cursor: pointer;
            box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
            border: 2px solid #bfff5a;
            border-radius: 10px;
            padding: 9px 20px;
            transition: all 0.3s ease;
        }

        .about-us-section-wrapper .explore:hover {
            background-color: #bfff5a;
            color: black;
            border: 2px solid #bfff5a;
            transform: translateY(-4px);
        }

        .about-us-section-wrapper .responsive-container-block.Container {
            margin: 80px auto 50px;
            justify-content: center;
            align-items: center;
            max-width: 1320px;
            padding: 10px;
        }

        .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
            flex-direction: row;
            margin: 50px auto;
        }

        .about-us-section-wrapper .allText.bottomText {
            margin-right: 10px;
        }

        /* NEW IMAGE CONTAINER STYLES */
        .about-us-section-wrapper .image-container {
            width: 39%;
            height: 470px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding-left: 10px;
            perspective: 1000px;
            margin-left: 30px; /* Added this line to move the container to the right */
        }

        .about-us-section-wrapper .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .about-us-section-wrapper .main-image {
            position: absolute;
            width: 470px;
            height: 420px;
            object-fit: cover;
            border-radius: 15px;
            top: 10px;
            left: 300px;
            z-index: -10;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border: 3px solid #09aeff;
            transform: rotateY(-5deg) rotateX(5deg);
            transition: all 0.5s ease;
        }

        .about-us-section-wrapper .main-image:hover {
            transform: rotateY(0) rotateX(0) scale(1.03);
        }

        .about-us-section-wrapper .decorative-border {
            position: absolute;
            width: 490px;
            height: 400px;
            border: 3px dashed rgba(191, 255, 90, 0.6);
            border-radius: 20px;
            top: 20px;
            left: 280px;
            z-index: -5;
            animation: rotateBorder 20s linear infinite;
        }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .about-us-section-wrapper .floating-dots {
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(191, 255, 90, 0.2) 0%, rgba(191, 255, 90, 0) 70%);
            border-radius: 50%;
            z-index: -1;
            animation: floatDot 8s ease-in-out infinite;
        }

        .about-us-section-wrapper .floating-dots:nth-child(1) {
            top: 20px;
            left: 20px;
            animation-delay: 0s;
        }

        .about-us-section-wrapper .floating-dots:nth-child(2) {
            bottom: 40px;
            right: 30px;
            width: 100px;
            height: 100px;
            animation-delay: 1s;
        }

        .about-us-section-wrapper .floating-dots:nth-child(3) {
            top: 60%;
            left: 10%;
            width: 80px;
            height: 80px;
            animation-delay: 2s;
        }

        @keyframes floatDot {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10px, 15px); }
            50% { transform: translate(5px, -10px); }
            75% { transform: translate(-10px, 5px); }
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .about-us-section-wrapper .responsive-container-block.Container {
                max-width: 850px;
            }

            .about-us-section-wrapper .allText {
                width: 40%;
                margin-left: 20px;
            }

            .about-us-section-wrapper .responsive-container-block.bigContainer {
                padding: 10px;
            }

            .about-us-section-wrapper .text-blk.subHeadingText {
                font-size: 30px;
            }

            .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
                margin: 80px auto 50px;
            }

            .about-us-section-wrapper .allText.bottomText {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin: 30px 0;
            }

            .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
                flex-direction: column;
            }

            .about-us-section-wrapper .text-blk.headingText,
            .about-us-section-wrapper .text-blk.subHeadingText,
            .about-us-section-wrapper .text-blk.description {
                text-align: center;
                padding: 0;
            }

            .about-us-section-wrapper .text-blk.headingText {
                font-size: 22px;
            }

            .about-us-section-wrapper .explore {
                margin: 0 auto;
            }

            .about-us-section-wrapper .image-container {
                width: 100%;
                padding: 0;
                height: 400px;
                margin-top: 30px;
                margin-left: 0; /* Reset margin for responsive view */
            }

            .about-us-section-wrapper .main-image {
                height: 350px;
            }

            .about-us-section-wrapper .decorative-border {
                height: 370px;
                width: 390px;
            }

            .about-us-section-wrapper .allText.bottomText {
                margin: 30px 0 60px;
            }
        }

        @media (max-width: 768px) {
            .about-us-section-wrapper .headingText {
                display: none;
            }
            
            .about-us-section-wrapper .allText {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin: 40px 0 0;
                padding: 0;
            }

            .about-us-section-wrapper .responsive-container-block.Container {
                flex-direction: column;
                height: auto;
            }

            .about-us-section-wrapper .text-blk.subHeadingText {
                font-size: 28px;
                line-height: 38px;
            }

            .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
                margin: 50px auto;
                padding: 0 0 0 10px;
            }

            .about-us-section-wrapper .allText.bottomText {
                margin: 40px 0 60px;
            }

            .about-us-section-wrapper .main-image {
                height: 300px;
                width: 320px;
                left: 190px;
            }

            .about-us-section-wrapper .decorative-border {
                height: 320px;
                width: 340px;
                left: calc(50% - 170px);
            }

            .about-us-section-wrapper .image-container {
                height: 350px;
                margin-bottom: 35px;
                margin-left: 0; /* Reset margin for responsive view */
            }

            .about-us-section-wrapper .explore {
                font-size: 16px;
                padding: 8px 40px;
            }
            
            .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
                flex-direction: column-reverse;
            }
        }

        @media (max-width: 500px) {
            .about-us-section-wrapper .responsive-container-block.Container {
                padding: 10px 0;
                width: 100%;
                max-width: 100%;
            }

            .about-us-section-wrapper .responsive-container-block.bigContainer {
                padding: 10px 25px;
            }

            .about-us-section-wrapper .explore {
                font-size: 16px;
                padding: 8px 35px;
            }

            .about-us-section-wrapper .main-image {
                height: 220px;
                width: 240px;
                left: 220px;
            }

            .about-us-section-wrapper .decorative-border {
                height: 240px;
                width: 260px;
                left: 220px;
                top: -10px;
            }

            .about-us-section-wrapper .image-container {
                height: 250px;
                margin-left: 0; /* Reset margin for responsive view */
            }

            .about-us-section-wrapper .responsive-container-block.Container.bottomContainer {
                padding: 0;
            }

            .about-us-section-wrapper .text-blk.description {
                font-size: 16px;
                line-height: 23px;
                margin-bottom: 30px;
            }

            .about-us-section-wrapper .text-blk.subHeadingText {
                font-size: 24px;
            }
        }
    </style>