 
        /* Base styles */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
        }
        
        /* Popular Services Section Styles */
        .popular-services {
            padding: 41px 0;
            border-bottom: 1px solid #eee;
        }
        
        .popular-services h3 {
            font-size: 16px;
            margin: 0 0 10px 15px;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .popular-services h3 span {
            background-color: #e73c33;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            margin-right: 5px;
        }
        
        .services-container {
            display: flex;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 10px 0;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
        }
        
        .services-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .service-card {
            min-width: 260px;
            max-width: 260px;
            margin: 0 10px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            background: white;
            position: relative;
            flex-shrink: 0;
        }
        
        .service-card:first-child {
            margin-left: 15px;
        }
        
        .service-card:last-child {
            margin-right: 15px;
        }
        
        .service-card img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            display: block;
        }
        
        .service-card-content {
            padding: 10px;
            text-align: center;
        }
        
        .service-card h4 {
            margin: 0 0 5px;
            font-size: 14px;
            color: #e73c33;
        }
        
        .service-card p {
            margin: 0;
            font-size: 12px;
            color: #666;
        }
        
        .service-card .price {
            font-weight: bold;
            color: #333;
            margin-top: 5px;
        }
        
        .view-service-btn {
            display: block;
            background: #e73c33;
            color: white;
            text-align: center;
            padding: 8px 0;
            border-radius: 4px;
            margin-top: 8px;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Service Icons Section Styles */
        .service-icons {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .service-icons h3 {
            font-size: 16px;
            margin: 0 0 10px 15px;
            color: #333;
        }
        
        .icons-container {
            display: flex;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 5px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }
        
        .icons-container::-webkit-scrollbar {
            display: none;
        }
        
        .service-icon-item {
            min-width: 80px;
            margin: 0 10px;
            text-align: center;
            flex-shrink: 0;
        }
        
        .service-icon-item:first-child {
            margin-left: 15px;
        }
        
        .service-icon-item:last-child {
            margin-right: 15px;
        }
        
        .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(231, 60, 51, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
        }
        
        .icon-circle img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }
        
        .service-icon-item p {
            margin: 0;
            font-size: 12px;
            color: #333;
            white-space: nowrap;
        }
        
        /* Button Styles */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .scroll-left {
            left: 5px;
        }
        
        .scroll-right {
            right: 5px;
        }
 