
        /* Custom Styles */
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #198754;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }
        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
        }
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 20px;
        }
        .section-title::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .process-table {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .delivery-card {
            border-left: 4px solid var(--secondary-color);
        }
        .industry-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Ueeshop Responsive Optimization */
        @media (max-width: 992px) {
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .py-10 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }
            .py-md-15 {
                padding-top: 4rem !important;
                padding-bottom: 4rem !important;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }
            .contact-info ul li {
                font-size: 0.9rem;
            }
            .btn-lg {
                padding: 0.5rem 1rem;
                font-size: 1rem;
            }
        }
    