        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #444;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #0076CE;
        }
        
        /* img {
            max-width: 100%;
        } */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .top-header {
            background-color: #f4f4f4;
            padding: 8px 0;
            font-size: 12px;
        }
        
        .top-header .container {
            display: flex;
            justify-content: flex-end;
        }
        
        .top-links a {
            margin-left: 15px;
            color: #444;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        /* .logo {
            width: 120px;
        } */
        
        .search-cart {
            display: flex;
            align-items: center;
        }
        
        .search-cart a {
            margin-left: 20px;
        }
                
        /* Hero Section */
        .hero {
            padding: 0;
            /* padding-top: 5vh; */
            /* margin-bottom: 60px; */
            position: relative;
        }
        
        .hero-container {
            display: flex;
            width: 100%;
            height: 400px;
        }
        
        .hero-item {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .hero-item:hover .hero-image {
            transform: scale(1.05);
        }
        
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: white;
        }
        
        .hero-content h2 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #f5f5f5;
        }
        
        .hero-content p {
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #FF6B00;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #E05A00;
        }
        
        /* Carousel for mobile devices */
        .carousel {
            display: none;
            width: 100%;
            height: 350px;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-inner {
            width: 300%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            width: 33.333%;
            height: 100%;
            position: relative;
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
        }
        
        .carousel-dot.active {
            background-color: white;
        }
        
        .carousel-prev, .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
        }
        
        .carousel-prev {
            left: 10px;
        }
        
        .carousel-next {
            right: 10px;
        }
        
        @media (max-width: 768px) {
            .hero-container {
                display: none;
            }
            
            .carousel {
                display: block;
            }
        }
        
        /* Product Categories */
        .products {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .product-card {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 200px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #0076CE;
        }
        
        .product-description {
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .specs-list {
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
            font-size: 13px;
            color: #555;
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 4px;
        }
        
        .specs-list li {
            margin-bottom: 5px;
            padding-left: 15px;
            position: relative;
        }
        
        .specs-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #0076CE;
        }
        
        .learn-more {
            font-weight: 500;
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .learn-more::after {
            content: "→";
            margin-left: 5px;
        }
        
        /* Solutions Section */
        .solutions {
            background-color: #f4f4f4;
            padding: 60px 0;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .solution-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .solution-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .solution-content {
            padding: 25px;
        }
        
        .solution-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #0076CE;
        }
        
        /* Resources Section */
        .resources {
            padding: 60px 0;
        }
        
        .resources-flex {
            display: flex;
            gap: 30px;
        }
        
        .resource-card {
            flex: 1;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .resource-icon {
            font-size: 36px;
            color: #0076CE;
            margin-bottom: 15px;
        }
        
        .resource-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #0076CE;
        }
        
        /* Contact Section */
        .contact {
            background-color: #0076CE;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .contact-title {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .contact-description {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 16px;
        }
        
        .contact-button {
            display: inline-block;
            background-color: white;
            color: #0076CE;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .contact-button:hover {
            background-color: #f4f4f4;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .product-grid, .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .resources-flex {
                flex-direction: column;
            }
            
            .product-grid, .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .main-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
        }