/* Reuse existing styles from main CSS */
        :root {
            --primary: #2e7d32;
            --primary-dark: #1b5e20;
            --secondary: #ffab00;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Product Page Specific Styles */
        .product-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(83, 81, 81, 0.7)), url('Img/img2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        
        .product-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .product-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: rgba(255,255,255,0.9);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 80px 0;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 30px;
        }
        
        .product-info h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .product-info .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark);
            margin: 15px 0;
        }
        
        .product-info .price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: normal;
        }
        
        .product-features {
            margin: 20px 0;
        }
        
        .product-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .product-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .tech-specs {
            background: var(--light);
            padding: 60px 0;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .spec-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .spec-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .spec-card ul {
            list-style: none;
        }
        
        .spec-card li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .spec-card li:last-child {
            border-bottom: none;
        }
        
        .spec-card li strong {
            color: var(--dark);
        }
        
        .cta-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-banner h2 {
            color: white;
            margin-bottom: 30px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .product-hero {
                padding: 120px 0 80px;
            }
            
            .product-hero h1 {
                font-size: 2.5rem;
            }
            
            .product-hero p {
                font-size: 1.1rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
        }