/*	land.css  */

    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            line-height: 1.6;
            color: #333;
            background-color: pink /*#f8f9fa;*/
        }

		.border-2 {
			border-style: solid;
			border-width: 2px;
		}
		
        .container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-container {
		  display: flex;
		  flex-wrap: wrap;
		  justify-content: space-between;
		  align-items: flex-start;
		  gap: 20px;
		  max-width: 1000px;
		  margin: auto;
		  padding: 20px;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }

		.container-form {
 			display:inline-flex;
            max-width: 550px;
			min-width:350px;
			height: auto;
            margin: 10px 20px;
            padding: 2px 2px 2px 2px;
			background-color: rgba(0,120,0,.1);
		}

		.form-container {
		  flex: 0 1 45%;
		  max-width: 450px;
		  box-sizing: border-box;
		  padding: 20px;
		  background-color: #f9f9f9;
		}

		.form-container,
		.container-graphic {
		  max-width: 100%;
		  height: auto;
		  border: 2px solid #008000;
		  border-radius: 8px;
		}

		.container-graphic {
		  flex: 1 1 50%;
		  max-width: 550px;
		  box-sizing: border-box;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		}
			
		.container-graphic img {
		  max-width: 100%;
		  height: auto;
		}

			
        /* Header */
        header {
            /*background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);*/
            background: white; /*linear-gradient(135deg, #006600 0%, #008000 100%); */
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .tagline {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Navigation */
        nav {
            background: white; /*#1e3a21; */
            padding: 0.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            font-weight: 500;
        }

        .nav-link:hover {
            background-color: white; /*rgba(255,255,255,0.2); */
        }

        /* Hero Section */
        .hero {
            /*background: linear-gradient(rgba(46, 85, 48, 0.8), rgba(46, 85, 48, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a7c59" width="1200" height="600"/><circle fill="%232c5530" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%235d8f66" cx="800" cy="300" r="120" opacity="0.2"/><circle fill="%232c5530" cx="1000" cy="100" r="60" opacity="0.3"/></svg>');*/
            background: white; /*linear-gradient(135deg, #006000, #008000) !important; */
            color: white;
            padding: 2rem 0 .1rem 0;
            text-align: center;
            background-size: cover;
            background-position: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        /* Software Modules Grid */
        .modules-section {
            padding: 2rem 0 0 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: #2c5530;
            margin-bottom: 1rem;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .module-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .module-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00a000, #006000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .module-card h3 {
            color: #2c5530;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .module-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .learn-more {
            color: #4a7c59;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .learn-more:hover {
            color: #2c5530;
        }

        /* Features Section */
        .features-section {
            padding: 3rem 0;
            background: #f8f9fa;
        }

        .features-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
            text-align: left;
        }

        .feature-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: #008000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: .1rem 0;
            background: linear-gradient(135deg, #008000 0%, #006600 100%);
            color: white;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #2c5530;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: #1e3a21;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }
		.responsive {
		  max-width: 100%;
		  height: auto;
		  border: 2px solid #008000;
		  border-radius: 8px;
		  display: block;
		}
		

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

			.page-container {
				flex-direction:column;
			}
			.form-container,
			.container-graphic {
				width: 100%;
			}
			
			.container-graphic {
				max-width: 100%;
				margin-top:0px;
			}
			
            .modules-grid {
                grid-template-columns: 1fr;
            }

            .nav-container {
                flex-direction: column;
                gap: 0rem;
            }

            .header-content {
                text-align: center;
            }

            .features-list {
                grid-template-columns: 1fr;
            }
        }

		 @media (max-width: 600px) {
		  .form-container,
		  .container-graphic {
			flex: 1 1 100%;
		  }
		}

       @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .module-card {
                padding: 1.5rem;
            }

            .hero {
                padding: 2rem 0;
            }
 		.container-graphic {
			margin-top:0px;
		}
       }
		
		
    </style>
