  body, html {
            padding: 0;
            margin: 0;
            background: linear-gradient(to bottom, #000000, #606470, #1C1C1C);
        }
       .position-relative {
            position: relative;
        }
       .full-width-img {
            width: 100%;
        }
       .almost-full-width-img {
            width: 95%;
        }
       .position-absolute {
            position: absolute;
            left: 0;
            top: 0;
        }
        @keyframes slide-up {
            0% {
                transform: translateY(20px);
            }
            100% {
                transform: translateY(0);
            }
        }
       .slide-up-animation {
            animation: slide-up 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }
       .rotating-element {
            margin-top: 74%;
            margin-left: 18%;
            width: 65%;
            animation: rotate 1s infinite linear;
        }
       .slow-rotating-element {
            margin-top: 39.5%;
            margin-left: 1%;
            width: 100%;
            animation: slow-rotate 7s infinite linear;
        }
       .sliding-element {
            margin-left: 46%;
            width: 55%;
            animation: slide-in 2s forwards;
        }
        @keyframes slide-in {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }
        @keyframes slow-rotate {
            from {
                transform: rotate(0deg) translateX(0px) translateY(0px);
            }
            to {
                transform: rotate(360deg) translateX(0px) translateY(0px);
            }
        }
        @keyframes rotate {
            from {
                transform: rotate(0deg) translateX(0px) translateY(0px);
            }
            to {
                transform: rotate(360deg) translateX(0px) translateY(0px);
            }
        }
        @keyframes scale-up {
            0% {
                transform: scale(0.8);
            }
            100% {
                transform: scale(1);
            }
        }
       .scale-up-animation {
            animation: scale-up 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        }
       .privacy-info {
            background-color: #070707;
            color: rgba(252, 252, 252, 1.0);
            font-family: "microsoft yahei";
            font-size: 18px;
            line-height: 23px;
            width: 100%;
            margin: 0px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       .privacy-info a {
            color: #fcfcfc;
        }
       .left-aligned {
            margin-left: 5%;
            text-align: left;
            margin-top: 20px;
        }
       .right-aligned {
            margin-right: 5%;
            text-align: left;
            margin-top: 10px;
        }
        input::placeholder {
            color: #2e70aa;
        }
		  body {
            max-width: 600px;
            margin: auto;
        }
       .win-pp-window {
            display: none;
            position: fixed;
            top: 0;
            left: 50%;
            transform: translate(-50%, 0%);
            width: 100%;
            height: 100%;
            justify-content: center;
            align-items: center;
            max-width: 600px;
            border-radius: 10px;
        }
       .win-pp-content {
            width: 80%;
            background-color: #34495e;
            text-align: center;
            position: relative;
            padding: 20px;
            border-radius: 15px;
        }
       .bottom-image {
            width: 80%;
            position: absolute;
            bottom: 10vw;
            left: 10%;
        }
       .full-width {
            width: 100%;
        }
       .description-text {
            width: 100%;
            color: #ffffffab;
            font-size: 16px;
            margin: 10% 0 auto;
            text-align: center;
        }
       .description-text a {
            color: #ffffffab;
        }
        :disabled {
            background-color: gray;
            cursor: not-allowed;
        }
       .progress-wrapper {
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 13px;
            overflow: hidden;
            margin-top: 10px;
        }
       .progress-indicator {
            height: 20px;
            width: 0;
            background-color: #4caf50;
            text-align: center;
            line-height: 20px;
            color: white;
            transition: width 1s;
        }
       .call-to-action {
            background-color: #1e88e5;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
       .call-to-action a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }
       .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
       .single-feature {
            background: #ffffff;
            padding: 20px;
            flex: 1 1 calc(100% - 40px);
            max-width: calc(33.333% - 40px);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
       .single-feature img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }
        #testimonials-section {
            padding: 20px;
            border-radius: 8px;
            max-width: 1200px;
            margin: 20px auto;
            position: relative;
        }
       .testimonial-scroll {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding: 10px;
        }
       .single-testimonial {
            flex: 0 0 auto;
            scroll-snap-align: center;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-sizing: border-box;
            min-width: 300px;
            max-width: 400px;
        }
       .single-testimonial img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
       .testimonial-text {
            flex: 1;
        }
       .single-testimonial strong {
            color: #1e88e5;
        }
       .image-carousel {
            position: relative;
            width: 50%;
            max-width: 600px;
            margin: auto;
            overflow: hidden;
        }
       .carousel-images-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
       .carousel-images-container img {
            width: 100%;
        }
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            nav a {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
           .single-feature {
                max-width: calc(50% - 20px);
            }
        }
        @media (max-width: 480px) {
           .single-feature {
                max-width: 85%;
            }
           .single-testimonial {
                flex: 0 0 auto;
                max-width: 100%;
            }
            button {
                width: 100%;
                padding: 12px;
            }
        }
		.textBlock01{display:none}