 /* Hero Service */
        .service-hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.unsplash.com/photo-1525547719578-e309730f6f1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .service-hero-content {
            max-width: 900px;
            padding: 0 20px;
        }
        
        .service-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .service-hero p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        /* Service Content */
        .service-content {
            padding: 6rem 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        /* Categories Section */
        .categories {
            padding: 4rem 0;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .category-icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            padding: 2rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }
        
        .category-content {
            padding: 1.5rem;
        }
        
        .category-content h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .category-content ul {
            list-style: none;
            text-align: left;
        }
        
        .category-content li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .category-content li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        /* Products Showcase */
        .products {
            padding: 4rem 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 1;
        }
        
        .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 1.5rem;
        }
        
        .product-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        
        .product-price {
            color: var(--accent-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .product-features li {
            margin-bottom: 0.5rem;
            color: var(--gray-color);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }
        
        .product-features i {
            color: var(--success-color);
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        /* Brands Section */
        .brands {
            padding: 4rem 0;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            align-items: center;
        }
        
        .brand-logo {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .brand-logo i {
            font-size: 2.5rem;
            color: var(--primary-color);
        }
        
        .brand-logo span {
            display: block;
            margin-top: 0.5rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        /* Services Section */
        .services-section {
            padding: 4rem 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-item {
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid var(--secondary-color);
        }
        
        .service-item h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .service-item h4 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        /* CTA */
        .cta {
            padding: 6rem 0;
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            text-align: center;
            color: white;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: #c0392b;
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }