  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation styles */
        nav {
            
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;

        }





        .nav-links {
            display: flex;
            list-style: none;


        }

        .nav-links li {
            margin-left: 1.5rem;

        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Hero section with text near nav */
        .hero {
            padding: 4rem 0;
            background: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
        }

        .hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .btn {
            display: inline-block;
            
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #2575fc;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Content section */
        .content {
            padding: 4rem 0;
        }

        .content h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            color: #2c3e50;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .feature {
            flex: 1;
            min-width: 250px;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature i {
            font-size: 2.5rem;
          
            margin-bottom: 1rem;
        }

        .feature h3 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* Media queries */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                
                background: #00bfff;
                padding: 1rem 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0.5rem 0;
                text-align: center;
                padding: auto;
            }

            .hamburger {
                display: block;
                color: #000;
            }

            .hero-content {
                flex-direction: column;
            }

            .hero-text,
            .hero-image {
                width: 100%;
            }

            .hero-text {
                text-align: center;
                padding: 1rem 0;
            }

            .hero-text h1 {
                font-size: 2rem;
            }
        }