        html, body {
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            overflow: auto;
            position: relative;
            font-family: 'Rubik', sans-serif;
        }

        .interactive {
            width: 100%;
            height: 100%;
            top: -50%;
            left: -50%;
        }
        .bg-blur {
            background: rgba(16, 28, 44, 0.8);
            backdrop-filter: blur(5px);
        }
        .button-glow:hover {
            box-shadow: 0 0px 10px rgb(3, 159, 170);
        }
        .child-container {
            background: transparent;
        }
        .hero {
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
        }
        .features {
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        .features h2 {
            font-size: 3rem;
            margin-bottom: 40px;
        }
        .feature-card {
            background: rgba(16, 28, 44, 0.8);
            padding: 20px;
            border-radius: 10px;
            margin: 20px;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
        }
        .feature-card h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .feature-card p {
            font-size: 1rem;
        }
        .testimonials {
            padding: 80px 0;
            text-align: center;
            color: white;
            background: rgba(16, 28, 44, 0.8);
        }
        .testimonials h2 {
            font-size: 3rem;
            margin-bottom: 40px;
        }
        .testimonial-card {
            background: rgba(16, 28, 44, 0.6);
            padding: 20px;
            border-radius: 10px;
            margin: 20px;
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        .testimonial-card p {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .testimonial-card span {
            font-size: 1.4rem;
            color: #34d399;
        }
        .cta {
            padding: 80px 0;
            text-align: center;
            color: rgb(0, 207, 141);
        }
        .cta h2 {
            font-size: 3rem;
            margin-bottom: 40px;
        }
        .cta button {
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 10px;
            background: #34d399;
            color: white;
            transition: background 0.3s ease;
        }
        .cta button:hover {
            background: #2bbc8a;
        }
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(4, 136, 90, 0.769);
            backdrop-filter: blur(5px);
            z-index: 10;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-grow: 1;
        }
        .navbar ul li {
            position: relative;
        }
        .navbar ul li a {
            color: rgb(0, 255, 179);
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease, border-bottom 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .navbar ul li a:hover {
            color: rgb(255, 255, 255);
        }
        .navbar ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #ffffff;
            bottom: -2px;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        @keyframes floatAnimation {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        .animate-float {
            animation: floatAnimation 3s ease-in-out infinite;
        }

        .testimonial-active {
            opacity: 1 !important;
        }


        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .hero p {
                font-size: 1.2rem; /* Adjust this value as needed */
            }
            .features h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .feature-card h3 {
                font-size: 1.5rem; /* Adjust this value as needed */
            }
            .feature-card p {
                font-size: 1rem; /* Adjust this value as needed */
            }
            .testimonials h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .testimonial-card p {
                font-size: 0.75rem; /* Adjust this value as needed */
            }
            .cta h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .cta button {
                font-size: 1rem; /* Adjust this value as needed */
            }
        }

        @media (max-width: 768px) and (min-width: 640px) {
            .hero h1 {
                font-size: 2.7rem; /* Adjust this value as needed */
            }
            .hero p {
                font-size: 1.2rem; /* Adjust this value as needed */
            }
            .features h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .feature-card h3 {
                font-size: 1.5rem; /* Adjust this value as needed */
            }
            .feature-card p {
                font-size: 1rem; /* Adjust this value as needed */
            }
            .testimonials h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .testimonial-card p {
                font-size: 1rem; /* Adjust this value as needed */
            }
            .cta h2 {
                font-size: 2rem; /* Adjust this value as needed */
            }
            .cta button {
                font-size: 1rem; /* Adjust this value as needed */
            }
        }

        @media (max-width: 768px) {
            .navbar ul {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(4, 136, 90, 0.9);
                flex-direction: column;
                align-items: center;
                display: none;
                padding: 20px;
            }
            .navbar ul.active {
                display: flex;
            }
            .navbar ul li {
                margin-bottom: 10px;
            }
            .navbar ul li a {
                font-size: 1rem;
            }
            .navbar .menu-icon {
                display: block;
                cursor: pointer;
            }
            .navbar .menu-icon div {
                width: 25px;
                height: 3px;
                background: rgb(0, 255, 179);
                margin: 5px;
                transition: all 0.3s ease;
            }
        }