    /* Products Page Styles */
    .products-hero {
      background: linear-gradient(135deg, #A06A31 0%, #A06A31 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    
    .products-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .products-hero .subtitle {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .certification-badges {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 30px 0;
      flex-wrap: wrap;
    }
    
    .cert-badge {
      background: rgba(255,255,255,0.2);
      padding: 10px 25px;
      border-radius: 25px;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.3);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .cert-badge i {
      font-size: 1.1rem;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin: 50px 0;
    }
    
    .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 1px solid #e9ecef;
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .product-image {
      height: 250px;
      overflow: hidden;
      position: relative;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.1);
    }
    
    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #8B4513;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    
    .product-content {
      padding: 30px;
    }
    
    .product-content h3 {
      color: #2c3e50;
      margin-bottom: 15px;
      font-size: 1.5rem;
    }
    
    .product-specs {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
    
    .product-specs li {
      padding: 8px 0;
      border-bottom: 1px solid #f8f9fa;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .product-specs li:last-child {
      border-bottom: none;
    }
    
    .product-specs i {
      color: #8B4513;
      width: 20px;
    }
    
    .product-actions {
      display: flex;
      gap: 10px;
      margin-top: 25px;
    }
    
    .btn-details {
      background: #8B4513;
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      flex: 1;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .btn-details:hover {
      background: #654321;
      color: white;
    }
    
    .btn-quote {
      background: transparent;
      color: #8B4513;
      padding: 12px 25px;
      border: 2px solid #8B4513;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      flex: 1;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .btn-quote:hover {
      background: #8B4513;
      color: white;
    }
    
    .features-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    
    .feature-item {
      text-align: center;
      padding: 30px;
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      background: #8B4513;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    }
    
    .feature-icon i {
      color: white;
      font-size: 2rem;
    }
    
    .comparison-section {
      padding: 80px 0;
    }
    
    .comparison-table {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .comparison-table table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .comparison-table th {
      background: #8B4513;
      color: white;
      padding: 20px;
      text-align: left;
      font-weight: 600;
    }
    
    .comparison-table td {
      padding: 20px;
      border-bottom: 1px solid #e9ecef;
    }
    
    .comparison-table tr:nth-child(even) {
      background: #f8f9fa;
    }
    
    .spec-highlight {
      color: #8B4513;
      font-weight: 600;
    }
    
    .industries-section {
      background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .industry-item {
      padding: 30px 20px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .industry-item:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-5px);
    }
    
    .industry-item i {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #8B4513;
    }
    
    .cta-section {
      background: linear-gradient(135deg, #000000 0%, #000111 100%);
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    
    .btn-primary {
      background: #ff6b35;
      color: white;
      padding: 18px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .btn-primary:hover {
      background: #e55a2b;
      transform: translateY(-2px);
      color: white;
    }
    
    .btn-secondary {
      background: transparent;
      color: white;
      padding: 18px 35px;
      border: 2px solid white;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .btn-secondary:hover {
      background: white;
      color: #8B4513;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: #2c3e50;
      margin-bottom: 15px;
    }
    
    .section-title .separator {
      width: 80px;
      height: 3px;
      background: #8B4513;
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      .products-hero h1 {
        font-size: 2.5rem;
      }
      
      .products-hero .subtitle {
        font-size: 1.1rem;
      }
      
      .products-grid {
        grid-template-columns: 1fr;
      }
      
      .product-actions {
        flex-direction: column;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
      }
      
      .industry-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 480px) {
      .industry-grid {
        grid-template-columns: 1fr;
      }
      
      .certification-badges {
        flex-direction: column;
        align-items: center;
      }
    }