
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
            font-family: Arial, sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
        }
        
        header {
            background: white;
            color: #1e293b;
            padding: 30px 0;
            text-align: center;
            border-radius: 0;
            box-shadow: none;
            font-family: Arial, sans-serif;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .product-title {
            font-size: 32px;
            margin-bottom: 8px;
            font-weight: 800;
            letter-spacing: -0.5px;
            font-family: Arial, sans-serif;
            color: #1e3a8a;
        }
        
        .product-subtitle {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
            font-family: Arial, sans-serif;
            color: #475569;
        }
        
        .title-divider {
            display: none;
        }
        
        .product-container {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin-top: 35px;
            font-family: Arial, sans-serif;
        }
        
        .product-image {
            flex: 1;
            min-width: 320px;
            background-color: white;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: Arial, sans-serif;
        }
        
        .main-product-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        .main-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #64748b;
        }
        
        .image-placeholder i {
            font-size: 80px;
            margin-bottom: 15px;
            color: #94a3b8;
        }
        
        .image-placeholder p {
            font-size: 16px;
            text-align: center;
            max-width: 80%;
        }
        
        .product-details {
            flex: 2;
            min-width: 320px;
            background-color: white;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            font-family: Arial, sans-serif;
        }
        
        .section-title {
            color: #1e3a8a;
            font-size: 24px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            font-family: Arial, sans-serif;
            font-weight: 700;
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .section-title i {
            margin-right: 12px;
        }
        
        .description {
            margin-bottom: 35px;
            font-size: 16px;
            color: #475569;
            line-height: 1.8;
            font-family: Arial, sans-serif;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 20px;
            margin-bottom: 35px;
            font-family: Arial, sans-serif;
        }
        
        .spec-item {
            background-color: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #2563eb;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            font-family: Arial, sans-serif;
        }
        
        .spec-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
        }
        
        .spec-label {
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: Arial, sans-serif;
        }
        
        .spec-value {
            font-weight: 700;
            font-size: 20px;
            color: #0f172a;
            font-family: Arial, sans-serif;
        }
        
        .spec-desc {
            font-size: 14px;
            color: #64748b;
            margin-top: 5px;
            font-family: Arial, sans-serif;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
            font-family: Arial, sans-serif;
        }
        
        .feature-item {
            background-color: #f1f5f9;
            padding: 18px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-family: Arial, sans-serif;
        }
        
        .feature-icon {
            background-color: #2563eb;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            color: #1e3a8a;
            margin-bottom: 5px;
            font-family: Arial, sans-serif;
            font-weight: 700;
        }
        
        .feature-text p {
            color: #475569;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }
        
        .highlight-box {
            background: linear-gradient(to right, #eff6ff, #dbeafe);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 6px solid #1e3a8a;
            font-family: Arial, sans-serif;
        }
        
        .highlight-title {
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 12px;
            font-size: 20px;
            font-family: Arial, sans-serif;
        }
        
        footer {
            margin-top: 50px;
            text-align: center;
            color: #64748b;
            font-size: 14px;
            padding: 25px;
            border-top: 1px solid #e2e8f0;
            font-family: Arial, sans-serif;
            background-color: white;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-family: Arial, sans-serif;
        }
        
        .specs-table th {
            background-color: #1e3a8a;
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
            font-family: Arial, sans-serif;
        }
        
        .specs-table td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            font-family: Arial, sans-serif;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .specs-table td strong {
            font-family: Arial, sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6, p, li, th, td, span, div {
            font-family: Arial, sans-serif;
        }
        
        .specs-full-width {
            width: 100%;
            margin-top: 40px;
        }
        
        .specs-section {
            width: 100%;
            background-color: white;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            margin-bottom: 35px;
        }
        
        .hydraulic-section {
            width: 100%;
            background-color: white;
            border-radius: 12px;
            padding: 28px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        }
        
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
            }
            
            .specs-grid, .features-grid {
                grid-template-columns: 1fr;
            }
            
            .product-title {
                font-size: 26px;
            }
        }
    