* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: #1a4d2e;
        }

        .logo-image {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .logo-icon {
            display: none;
        }

        .logo-text {
            display: none;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #4a4a4a;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4caf50;
            transition: width 0.3s;
        }

        .nav-menu a:hover {
            color: #1a4d2e;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #1a4d2e;
            border-radius: 3px;
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            .logo-image {
                height: 35px;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 30px 0;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transition: left 0.3s;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: flex;
            }
        }

        /* Hero Slideshow */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 77, 46, 0.85), rgba(15, 41, 34, 0.75));
            z-index: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .hero-content .subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            width: 40px;
            border-radius: 6px;
        }

        /* About Section */
        .about-section {
            background: white;
            padding: 120px 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .about-content h2 {
            font-size: 3.5rem;
            color: #1a4d2e;
            margin-bottom: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.15rem;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Products Section */
        .products-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 5%;
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            color: #1a4d2e;
            margin-bottom: 80px;
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(26, 77, 46, 0.25);
        }

        .product-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .product-content {
            padding: 50px;
        }

        .product-content h3 {
            font-size: 2.5rem;
            color: #1a4d2e;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .product-content .product-desc {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .product-content ul {
            list-style: none;
            padding: 0;
        }

        .product-content li {
            padding: 12px 0;
            font-size: 1.1rem;
            color: #4a4a4a;
            position: relative;
            padding-left: 35px;
        }

        .product-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4caf50;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Features Section */
        .features-section {
            background: white;
            padding: 120px 5%;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 50px 30px;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 25px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: #4caf50;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: #1a4d2e;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* World Section */
        .world-section {
            background: linear-gradient(135deg, #1a4d2e 0%, #0f2922 100%);
            padding: 120px 5%;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .world-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600') center/cover;
            opacity: 0.1;
        }

        .world-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .world-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .world-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .world-text p {
            font-size: 1.15rem;
            line-height: 1.9;
            opacity: 0.95;
        }

        /* Goals Section */
        .goals-section {
            background: white;
            padding: 120px 5%;
        }

        .goals-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
        }

        .goals-intro h2 {
            font-size: 3.5rem;
            color: #1a4d2e;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .goal-card {
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 50px 40px;
            border-radius: 25px;
            transition: all 0.4s;
            border-left: 5px solid #4caf50;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .goal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 77, 46, 0.15);
        }

        .goal-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .goal-card h3 {
            font-size: 1.5rem;
            color: #1a4d2e;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .goal-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .goal-card ul {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .goal-card li {
            padding: 8px 0;
            color: #555;
            font-size: 0.95rem;
            padding-left: 25px;
            position: relative;
        }

        .goal-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #4caf50;
            font-weight: bold;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
            padding: 100px 5%;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            background: linear-gradient(135deg, rgb(26 139 71 / 23%) 0%, rgb(26 118 59 / 62%) 50%, rgb(55 224 142 / 49%) 100%), url('https://images.unsplash.com/photo-1530836369250-ef72a3f5cda8?w=1600') center / cover no-repeat;
        
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .cta-content p {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .cta-team {
            font-size: 1.3rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 5%;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-container h2 {
            font-size: 3rem;
            color: #1a4d2e;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .newsletter-container p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 18px 25px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: #4caf50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .newsletter-btn {
            padding: 18px 45px;
            background: linear-gradient(135deg, #4caf50, #66bb6a);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: white;
            padding: 80px 5% 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-logo-section {
            max-width: 350px;
        }

        .footer-logo {
            height: 50px;
            width: auto;
            margin-bottom: 1.5rem;
        }

        .footer-desc {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(76, 175, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4caf50;
            font-size: 1.3rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            background: #4caf50;
            color: white;
            transform: translateY(-5px);
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #4caf50;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #4caf50;
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0.8;
        }

        .footer-contact i {
            color: #4caf50;
            font-size: 1.1rem;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.6;
            font-size: 0.9rem;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                min-width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .newsletter-section {
                padding: 80px 5%;
            }

            .newsletter-container h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 1024px) {
            .about-section,
            .world-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content .subtitle {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .about-content h2,
            .world-text h2,
            .goals-intro h2,
            .cta-content h2 {
                font-size: 2.5rem;
            }

            .about-section,
            .products-section,
            .features-section,
            .world-section,
            .goals-section,
            .cta-section {
                padding: 80px 5%;
            }
        }
   
        /* Hero Section - PRESERVED FROM ORIGINAL */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(135deg, rgb(26 139 71 / 23%) 0%, rgb(26 118 59 / 62%) 50%, rgb(55 224 142 / 49%) 100%), url(../img/banner1.JPG) center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center bottom;
            background-size: cover;
            opacity: 0.3;
        }
        
        .hero .hero-content {
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            padding: 0 5%;
            animation: fadeInUp 1s ease-out;
            text-align: center;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem auto;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            max-width: 1000px;
            width: 100%;
            text-align: center !important;
        }
        
        .hero .subtitle {
            font-size: 1.8rem;
            margin: 0 auto 3rem auto;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.6;
            max-width: 900px;
            width: 100%;
            text-align: center !important;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center !important;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .cta-buttons a{z-index: 2;}
        
        .cta-button {
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .cta-primary {
            background: white;
            color: #1a4d2e;
        }
        
        .cta-primary:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        
        /* Features Section */
        .features {
            padding: 0px 5%;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: #9acb3c;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-title p {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 77, 46, 0.15);
        }
        
        .feature-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.8rem;
            color: #2ac466;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-card p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
        }
        
        /* About Section */
        .about {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
        }
        
        .about-content {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .about-text h2 {
            font-size: 3rem;
            color: #1a4d2e;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .about-text p {
            font-size: 1.1rem;
            color: #4a4a4a;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .about-images-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .about-highlights {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .highlight-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
        }
        
        .highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .highlight-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4caf50;
            margin-bottom: 10px;
        }
        
        .highlight-item .label {
            font-size: 1rem;
            color: #666;
            font-weight: 500;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }
        
        .about-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.2);
        }
        
        .about-img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }
        
        .about-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #4caf50 0%, #1a4d2e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 6rem;
        }
        
        .about-link {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 35px;
            background: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .about-link:hover {
            background: #45a049;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
        }
        
        /* Products Section */
        .products {
            padding: 100px 5%;
            background: white;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .product-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 77, 46, 0.15);
            border-color: #4caf50;
        }
        
        .product-header {
            background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .product-icon {
            font-size: 4rem;
            margin-bottom: 15px;
        }
        
        .product-header h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .product-header .tagline {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .product-body {
            padding: 35px 30px;
        }
        
        .product-body p {
            font-size: 1.1rem;
            color: #4a4a4a;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .product-features li {
            padding: 10px 0;
            color: #4a4a4a;
            font-size: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .product-features li:last-child {
            border-bottom: none;
        }
        
        .product-features li::before {
            content: '✓';
            color: #4caf50;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .product-link {
            display: inline-block;
            padding: 12px 30px;
            background: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .product-link:hover {
            background: #45a049;
            transform: translateX(5px);
        }
        
        /* Benefits Section */
        .benefits {
            padding: 100px 5%;
            background: linear-gradient(135deg, rgb(31 137 73 / 0%) 0%, rgba(45, 95, 63, 0.92) 100%), url(https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&q=80) center / cover no-repeat fixed;
            color: white;
            position: relative;
        }
        
        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 77, 46, 0.1);
            z-index: 0;
        }
        
        .benefits > * {
            position: relative;
            z-index: 1;
        }
        
        .benefits .section-title h2,
        .benefits .section-title p {
            color: white;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .benefit-item {
            background: rgba(255,255,255,0.1);
            padding: 35px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .benefit-item .icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .benefit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .benefit-item p {
            font-size: 1.05rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Knowledge Section */
        .knowledge {
            padding: 100px 5%;
            background: white;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .knowledge-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .knowledge-card-header {
            background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .knowledge-card-header .icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        
        .knowledge-card-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .knowledge-card-body {
            padding: 25px;
        }
        
        .knowledge-card-body p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .knowledge-link {
            display: inline-block;
            color: #1a4d2e;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .knowledge-link:hover {
            color: #4caf50;
            transform: translateX(5px);
        }
        
        .knowledge-link::after {
            content: ' →';
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #2d5f3f 0%, #1a4d2e 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-section p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 5%;
            background: #f9f9f9;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            color: #1a4d2e;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            gap: 15px;
        }
        
        .contact-item .icon {
            font-size: 2rem;
            color: #4caf50;
        }
        
        .contact-item-content h4 {
            font-size: 1.2rem;
            color: #1a4d2e;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .contact-item-content p {
            font-size: 1.1rem;
            color: #666;
            margin: 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .contact-form h3 {
            font-size: 2rem;
            color: #1a4d2e;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1a4d2e;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4caf50;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 5%;
            background: linear-gradient(135deg, #e8f5e9 0%, #98dfb7 100%);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .stat-item .icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }
        
        .stat-item .number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a4d2e;
            margin-bottom: 10px;
        }
        
        .stat-item .label {
            font-size: 1.2rem;
            color: #666;
            font-weight: 500;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .about-content { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }
            .about-highlights { 
                grid-template-columns: repeat(2, 1fr); 
            }
            .contact-container { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero .subtitle { font-size: 1.3rem; }
            .section-title h2 { font-size: 2.2rem; }
            .cta-buttons { flex-direction: column; align-items: stretch; }
            .cta-button { width: 100%; }
            .features-grid,
            .products-grid,
            .benefits-grid,
            .knowledge-grid,
            .stats-grid { 
                grid-template-columns: 1fr; 
            }
            .about-content { 
                grid-template-columns: 1fr; 
            }
            .about-images-wrapper {
                grid-template-columns: 1fr;
            }
            .about-highlights { 
                grid-template-columns: 1fr; 
            }
            .about-text h2 {
                font-size: 2rem;
            }
            .about-text p {
                font-size: 1rem;
            }
            .about-image-placeholder {
                height: 250px;
                font-size: 4rem;
            }
        }