.sub-service {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    margin-bottom: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sub-service:hover {
    background-color: #fff;
    border-color: #003153;
    transform: translateX(8px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.sub-service:hover .sub-service-icon {
    transform: scale(1.1);
    color: #c4ab5e;
}

.sub-service-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
    color: #003153;
}

.sub-service span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sub-service {
        padding: 6px;
    }
    
    .sub-service-icon {
        width: 20px;
        height: 20px;
    }
    
    .sub-service span {
        font-size: 13px;
    }
}