
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.6;
            padding: 20px;
        }
        
        .product-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .section-title {
            font-size: 20px;
            color: #2c5c34;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .specs-table td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .spec-name {
            font-weight: 600;
            color: #2c5c34;
            width: 30%;
        }
        
        .features-list {
            list-style: none;
            margin-top: 15px;
        }
        
        .features-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: flex-start;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: "•";
            color: #4a8c5a;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .product-image {
            text-align: center;
            margin: 20px 0;
        }
        
        .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            color: #636e72;
            font-size: 14px;
            margin-top: 30px;
            border-top: 1px solid #e9ecef;
        }
        
        @media (max-width: 768px) {
            .spec-name {
                width: 40%;
            }
            
            .product-container {
                padding: 15px;
            }
        }
    