.service-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-stats .stat-item {
    flex: 1;
    padding: 15px;
    position: relative;
}

.service-stats .stat-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #ccc, transparent);
}

.service-stats .stat-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #0056b3);
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-stats .stat-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-stats {
        flex-direction: column;
        padding: 15px;
    }
    
    .service-stats .stat-item {
        padding: 12px 0;
    }
    
    .service-stats .stat-item:not(:last-child):after {
        right: 0;
        bottom: 0;
        top: auto;
        height: 1px;
        width: 80%;
        left: 10%;
        background: linear-gradient(to right, transparent, #ccc, transparent);
    }
    
    .service-stats .stat-item h4 {
        font-size: 22px;
    }
}