        :root {
            --primary-green: #2e7d32;
            --secondary-green: #388e3c;
            --light-green: #dcedc8;
            --dark-green: #1b5e20;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #616161;
            --black: #212121;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Lato', sans-serif;
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

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

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            width: 100%;
            z-index: 1000;
            transition: transform 0.3s ease; /* This enables the slide-up effect */
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .mobile-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-info {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-right .contact-info {
                display: flex;
                gap: 15px;
            }
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: var(--dark-gray);
        }

        /* Mobile Styles */
        .navbar-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .navbar-toggle span {
            height: 3px;
            width: 25px;
            background: var(--dark-gray);
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
        }

        /* Dropdown Menu */
        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 60px; /* Adjust based on your header height */
            left: 0;
            right: 0;
            background-color: var(--white);
            box-shadow: var(--shadow);
            z-index: 999;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Hide links by default */
                width: 100%;
            }

            .navbar-toggle {
                display: flex; /* Show toggle button on mobile */
            }
        }
        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('pintrest/1.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--primary-green);
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* Use Cases Section */
        .use-cases {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-green);
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }

        .use-case-card {
            background-color: var(--light-gray);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .use-case-card i {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        /* Specifications Section */
        .specs {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--medium-gray);
        }

        th {
            background-color: var(--primary-green);
            color: var(--white);
        }

        tr:hover {
            background-color: var(--light-green);
        }

        /* Why Choose Us */
        .benefits {
            padding: 80px 0;
            background-color: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .benefit-item i {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-top: 5px;
        }

        /* Cities Served */
        .cities {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .city-list {
            column-count: 3;
            margin-top: 30px;
        }

        .city-list li {
            margin-bottom: 10px;
            list-style-type: none;
            position: relative;
            padding-left: 20px;
        }

        .city-list li:before {
            content: "✓";
            color: var(--primary-green);
            position: absolute;
            left: 0;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--white);
        }

        .accordion {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .accordion-header {
            padding: 15px 20px;
            background-color: var(--light-green);
            color: var(--dark-green);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background-color: var(--primary-green);
            color: var(--white);
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background-color: var(--white);
        }

        .accordion-content-inner {
            padding: 20px;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        /* Contact Section */
        .contact-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-green);
            color: var(--white);
            padding: 15px 0;
            z-index: 999;
        }

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

        .contact-info-bottom {
            display: flex;
            gap: 20px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
            height: 400px;
        }
        .product-card h3 {
            margin-bottom: 10px;
            color: var(--dark-green);
        }
        .product-card p {
            color: var(--dark-gray);
            text-align: justify;
        }
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-green);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: burlywood;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: var(--white);
            background-color: var(--dark-gray);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-green);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--dark-gray);
            color: var(--medium-gray);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .city-list {
                column-count: 2;
            }
        }

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

            .cta-buttons {
                flex-direction: column;
            }

            .city-list {
                column-count: 1;
            }

            .contact-content {
                flex-direction: column;
                gap: 15px;
            }

            .contact-info-bottom {
                flex-direction: column;
                gap: 10px;
            }
        }

