  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef3f8;
            color: #333;

        }
        header {
            background-color: #2a78c9;
            color: white;
            padding: 15px 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        header h1 {
            margin: 0;
        }
        nav {
            display: flex;
            justify-content: space-around;
            background-color: #ffffff;
            padding: 10px 0;
            border-bottom: 2px solid #ddd;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        nav a {
            color: #2a78c9;
            text-decoration: none;
            font-size: 1rem;
            margin: 0 15px;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #1d5fa7;
        }
        section {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
            background-color: #2a78c9;
            color: white;
            text-align: center;
            padding: 50px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
        }
        .hero h2 {
            margin-bottom: 10px;
        }
        .hero img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }
        .customer-reviews {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .customer-review {
            text-align: center;
            max-width: 250px;
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
			color:black;
        }

		.customer-review  p{
			color:black;
        }
		
		
        .customer-review img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 20px;
            margin-top: 50px;
        }
        form {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        form label {
            margin-top: 15px;
        }
        form input, form textarea, form button {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        form button {
            background-color: #2a78c9;
            color: white;
            border: none;
            cursor: pointer;
            margin-top: 15px;
        }
        form button:hover {
            background-color: #1d5fa7;
        }
		
		


        .info-box {
            margin-top: 20px;
            border: 2px solid #ddd;
            padding: 10px;
            background-color: #f9f9f9;
            font-size: 14px;
        }

        .error {
            color: red;
            text-align: center;
            margin-bottom: 15px;
        }

        .success {
            color: green;
            text-align: center;
            margin-bottom: 15px;
        }

        .hidden {
            display: none;
        }
		
	    .layout-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
        }

        .image-container {
            flex: 1;
            min-width: 300px;
            max-width: 50%;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
			margin-top:0;
        }

        .features-container {
            flex: 1;
            min-width: 300px;
            max-width: 50%;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            color: black;
			margin-top:0;
			text-align:left;
        }
        .features-container h3{
			text-align:center;
        }		

        .features-container::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
            pointer-events: none;
        }

        .features-list {
            max-height: 150px;
            overflow: hidden;
        }

        .read-more {
            display: block;
            text-align: center;
            color: #2a78c9;
            margin-top: 10px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
        }

        .read-more:hover {
            text-decoration: underline;
        }
		
      .inline {
            display: flex;
            align-items: left;
			border: 0px solid red;
			text-align: left;
        }
        .inline label {
            margin-right: 0px; 
			border: 0px solid red;
        }


        .success {
            color: green;
            text-align: center;
            margin-bottom: 15px;
        }

        .error {
            color: red;
            text-align: center;
            margin-bottom: 15px;
        }
		
		        .form-container {
            background: #fff;
            border: 2px solid silver;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 400px;
            width: 100%;
        }

        .form-container h2 {
            text-align: center;
        }

        .form-container form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
		
		.demo_qr {
			width:50%;
			-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
			-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
			box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
			border:1px solid silver;
		}